I am using Windows XP - SP2. How can I check how many processors are available in my system and how many cores in each?
Tell me more
×
Super User is a question and answer site for
computer enthusiasts and power users. It's 100% free, no registration required.
|
Use CPU-Z to identify your processor information |
|||
|
|
|
You can also use the new tool Speccy, by Piriform (the guys who made CCleaner). |
|||||
|
|
From the command line you can use WMIC:
For a multi-processor setup you should get one result line per CPU. |
|||
|
|
|
If you already have Powershell downloaded, you can execute the following.
Then look at NumberOfCores NumberOfLogicalProcessors values. It uses Windows Management Instrumentation just as Joey's does, but you have more options in what you do with the info over the Windows Management Instrumentation Command-line (WMIC). For example you can add
More info about Powershell and WMI can be found here |
|||
|
|