August 28, 2011

Get CPU/ Processor 's information Using Command Prompt

On Windows OS, we can find hardware related information using msinfo32 command. This will open "System Information" utility which shows information about processors, system physical memory, disk drives, display monitor, BIOS etc.

To know processors information from command prompt, you can run the below command.

wmic cpu get caption

On my system, it shows the below information:

Caption
x64 Family 15 Model 67 Stepping 3

The output shows that my laptop has processors of x64 architecture.

Command To get Processor's Information in detail about architecture,  address-width, clockspeed, datawidth, processor id, manufacurer, chache memory size, etc

wmic cpu list full

Its Show Below Information:
AddressWidth=32
Architecture=9
Availability=3
Caption=x64 Family 15 Model 67 Stepping 3
ConfigManagerErrorCode=
ConfigManagerUserConfig=
CpuStatus=1
CreationClassName=Win32_Processor
CurrentClockSpeed=3000
CurrentVoltage=15
DataWidth=64
Description=x64 Family 15 Model 67 Stepping 3
DeviceID=CPU0
ErrorCleared=
ErrorDescription=
ExtClock=200
Family=136
InstallDate=
L2CacheSize=2048
L2CacheSpeed=
LastErrorCode=
Level=15
LoadPercentage=22
Manufacturer=AuthenticAMD
MaxClockSpeed=3000
Name=AMD Athlon(tm) 64 X2 Dual Core Processor 6000+
OtherFamilyDescription=
PNPDeviceID=
PowerManagementCapabilities=
PowerManagementSupported=FALSE
ProcessorId=178BFBFF00040F33
ProcessorType=3
Revision=17155
Role=CPU
SocketDesignation=AM2
Status=OK
StatusInfo=3
Stepping=3
SystemCreationClassName=Win32_ComputerSystem
SystemName=GAUTAM
UniqueId=
UpgradeMethod=1
Version=Model 3, Stepping 3
VoltageCaps=

No comments:

Post a Comment