On Windows OS, we can find hardware information using msinfo32
utility. This utility shows information about processors, system physical memory, disk drives, display monitor and BIOS etc.
To know processors information from command prompt, you can run the below command.
wmic cpu get caption
On my laptop, it shows the below information.
C:\>wmic cpu get caption Caption x86 Family 6 Model 37 Stepping 2 x86 Family 6 Model 37 Stepping 2 x86 Family 6 Model 37 Stepping 2 x86 Family 6 Model 37 Stepping 2 C:\>
The output shows that my laptop has 4 processors of x86 architecture.
We can get process information using system environment variables also. The environment variables related to CPU are listed below.
PROCESSOR_ARCHITECTURE PROCESSOR_IDENTIFIER PROCESSOR_LEVEL PROCESSOR_REVISION
The values of these environment variables can be retrieved using echo command.
Ex:
C:\>echo %PROCESSOR_ARCHITECTURE% %PROCESSOR_IDENTIFIER% %PROCESSOR_LEVEL% %PROCESSOR_REVISION% x86 x86 Family 6 Model 37 Stepping 2, GenuineIntel 6 2502 C:\>
how to get a processor serialnumber of laptop with out opening if u can plz help me…..
wmic cpu get processorid
how to find the number of processors from cmd? msinfo32 shows 2 processors on my laptop but wmic command shows only one entry in the output.
i tried both command lines in cmd aswell as powershell.
the wmic one gives a return as a x64 architecture but the environment variable returns a X86 (32 bit) architecture.
which one is the more accurate?
Looks like you have 64bit CPU but the OS installed was 32bit(x86).
I wish to find the processor socket, how to do this with CMD?
Tom
use
wmic cpu get socketdesignation
C:\Users\Tom>wmic cpu get socketdesignation
The output will be something like ….
SocketDesignation
LGA1155
you can then look up the tech details of lga1155 (for example)
regards
John
How can we get its output in a text file or so?
i.e.:
wmic cpu get socketdesignation
how to get processor batch number?
How can we check current speed of processor using command promt
Sir , how to get processor batch number in laptop
open command prompt
wmic cpu get name
this will get you some good info