Execute the below powershell script to get the number of cores and logical processors on the server.
Get-WmiObject –class Win32_processor | ft systemname,Name,DeviceID,NumberOfCores,NumberOfLogicalProcessors, Addresswidth
You can even check all the processor values from win32_Processor class.
Get-WmiObject –class Win32_processor | select *