我从here安装了WMI代码创建器,我想知道我们如何使用它来获取CPU温度。

该应用程序提供了许多选项(如下所示),但是我不确定必须单击何处才能获得CPU温度。

wmi - 我们如何通过WMI获得CPU温度?-LMLPHP

我去了WMI代码创建者的描述,并看到了以下内容:

最佳答案

命名空间:root\wmi路径:MSAcpi_ThermalZoneTemperature
要从Windows命令行(wmic)运行此命令(使用cmd.exe),该命令应为:
wmic /namespace:\\root\wmi PATH MSAcpi_ThermalZoneTemperature get CriticalTripPoint, CurrentTemperature
注意:结果在Kelvin * 10中,因此您需要将结果除以10,然后减去273.15得到摄氏度。

更多信息:

  • WUtils.com: MSAcpi_ThermalZoneTemperature Properties
  • 维基百科:Kelvin (and conversion to/from °C and °F)
  • 维基百科:Windows Management Instrumentation (WMI)
  • MSDN:WMI Command Line (WMIC)
  • 技术顾问: What's the Best CPU Temperature?
  • SpeedFan:Fan & Temperature control utility(免费软件)
  • 系统信息:systeminformation npm package (for nodejs)
  • 关于wmi - 我们如何通过WMI获得CPU温度?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45736193/

    10-14 18:43