How to get CPU name, core, 64bit and speed in command line
Summary
In windows operating system, if you want to get your CPU name, core, 64bit and speed in command line. Just follow below actions:
- Press
Win+R
and type cmd - Enter following command to get your CPU details.
wmic cpu get caption, deviceid,name, numberofcores,maxclockspeed,status
You’ll get output similar to below:
Caption DeviceID MaxClockSpeed Name NumberOfCores Status
Intel64 Family 6 Model 85 Stepping 7 CPU0 3912 Intel(R) Xeon(R) W-2245 CPU @ 3.90GHz 8 OK
Additionally reading, this wmic
is an utility shipped by Windows OS. It’s full name is WMI command-line (WMIC) , one utility provides a command-line interface for Windows Management Instrumentation (WMI).
–End–