up vote 2 down vote favorite
share [g+] share [fb]

I am using Windows XP - SP2. How can I check how many processors are available in my system and how many cores in each?

link|improve this question

57% accept rate
feedback

4 Answers

up vote 6 down vote accepted

Use CPU-Z to identify your processor information

link|improve this answer
Yep, CPU-Z is a great tiny tool with lots of information. – kamleshrao Nov 17 '09 at 7:12
feedback

You can also use the new tool Speccy, by Piriform (the guys who made CCleaner).

link|improve this answer
2  
+1 : it's a "new-kid-on-the-block" but it works fine and looks nice! – Snark Nov 17 '09 at 7:42
feedback

From the command line you can use WMIC:

> wmic cpu get numberofcores,numberoflogicalprocessors
NumberOfCores  NumberOfLogicalProcessors
2              2

For a multi-processor setup you should get one result line per CPU.

link|improve this answer
feedback

If you already have Powershell downloaded, you can execute the following.

Get-WmiObject -Class “Win32_Processor” -Namespace “root\CIMV2″ | Get-Member

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

| tee C:\cpuInfo.txt

More info about Powershell and WMI can be found here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.