コマンドプロンプトでcpuの情報を表示することができます。
「wmic cpu」で情報を表示できますが、見づらいので「list full」をつけています。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
C:\Users>wmic cpu list full AddressWidth=64 Architecture=9 Availability=3 Caption=Intel64 Family 6 Model 142 Stepping 9 ConfigManagerErrorCode= ConfigManagerUserConfig= CpuStatus=1 CreationClassName=Win32_Processor CurrentClockSpeed=2703 CurrentVoltage=10 DataWidth=64 Description=Intel64 Family 6 Model 142 Stepping 9 DeviceID=CPU0 ErrorCleared= ErrorDescription= ExtClock=100 Family=198 InstallDate= L2CacheSize=512 L2CacheSpeed= LastErrorCode= Level=6 LoadPercentage=13 Manufacturer=GenuineIntel MaxClockSpeed=2904 Name=Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz OtherFamilyDescription= PNPDeviceID= PowerManagementCapabilities= PowerManagementSupported=FALSE ProcessorId=BFEBFBFF000806E9 ProcessorType=3 Revision= Role=CPU SocketDesignation=U3E1 Status=OK StatusInfo=3 Stepping= SystemCreationClassName=Win32_ComputerSystem SystemName=kamo-DESKTOP UniqueId= UpgradeMethod=1 Version= VoltageCaps= C:\Users> |