Windows – How to find out the total number of virtual core your CPU has

cpuintel-core-i5multi-corewindows 7

This is the specification of my computer however i have problem finding out how many virtual cores are there in total .

I would like to know if there is any command in windows 7 which would help me determine the number of virtual cores my CPU has

Best Answer

You can pull the information from WMI via PowerShell:

PS> WmiObject -class win32_processor -Property Name, NumberOfCores, NumberOfLogicalProcessors | Format-List -Property Name, NumberOfCores, NumberOfLogicalProcessors

Will produce something like:

Name                      : AMD Phenom(tm) II X4 955 Processor
NumberOfCores             : 4
NumberOfLogicalProcessors : 4

Add a -computername <computername> argument and you can pull the info from networked computers as well.

Related Question