Temperature of CPU's thermal zone:
This temperature is in tenths of degrees Kelvin, so you need to add transformation script:
for Celsius:
for Fahrenheit:
Code Select
WMI.Query(root\WMI,"select * from MSAcpi_ThermalZoneTemperature",CurrentTemperature)This temperature is in tenths of degrees Kelvin, so you need to add transformation script:
for Celsius:
Code Select
($1-2730)/10for Fahrenheit:
Code Select
((($1-2730)/10)*1.8)+32