View computer temperature

查看电脑温度和电脑临界温度

在Windows PowerShell上右键,以管理员身份运行。

image-20220529150913554

 PS C:\Windows\system32> gwmi msacpi_thermalzonetemperature -namespace "root/wmi"


__GENUS              : ……
__CLASS              : ……
__SUPERCLASS         : ……
__DYNASTY            : ……
__RELPATH            : ……
__PROPERTY_COUNT     : ……
__DERIVATION         : ……
__SERVER             : ……
__NAMESPACE          : ……
__PATH               : ……
Active               : ……
ActiveTripPoint      : ……
ActiveTripPointCount : ……
CriticalTripPoint    : 3922
CurrentTemperature   : 3272
InstanceName         : ……
PassiveTripPoint     : 0
Reserved             : 0
SamplingPeriod       : 0
ThermalConstant1     : 0
ThermalConstant2     : 0
ThermalStamp         : ……
PSComputerName       : ……



PS C:\Windows\system32> $temp = gwmi msacpi_thermalzonetemperature -namespace "root/wmi"
PS C:\Windows\system32> $temp.CriticalTripPoint / 10 - 273.15
119.05
PS C:\Windows\system32> $temp.CurrentTemperature / 10 - 273.15
54.05
PS C:\Windows\system32>

使用软件查看

软件下载(网盘):https://zichenlbl.github.io/2022/04/14/software-download/#Core-Temp

CoreTemp

官网下载:https://www.alcpu.com/CoreTemp/Core-Temp-setup.exe

image-20220529153751682

AIDA64

官网下载:https://www.aida64.com/downloads

image-20220529154252793

MY:

UK4F4-3F2D6-FJD9J-C4D34-FYY12
UKXB1-Y3ED6-FJD9J-C4D34-FYY1U
UKIU4-933D6-FJD9J-C4D34-FYY1B

MSI Afterburner

官网下载:https://www.msi.com/Landing/afterburner/graphics-cards

image-20220529155019685

End.

谢谢您的阅读!

Copyright 2022 Zichen

Licensed under the Apache License, Version 2.0 (the “License”);
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an “AS IS” BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.