Windows 10 wism: Whose temps are these?

ToddAndMargo2

Active Member
Joined
Jul 5, 2021
Hi All,


Whose temps are these? CPU, Mobo, HD?
rem Admin <cmd>
rem Results are in kelvin *10
rem °Celsius = (result / 10 ) - 273.15
wmic /namespace:\\root\wmi PATH MSAcpi_ThermalZoneTemperature get CurrentTemperature
3010
3030



Converting:
(3010 ÷ 10) − 273.15 = 27.85
(3030 ÷ 10) − 273.15 = 29.85



Many thanks,
-T
 
Follow up:


The zones are:
ACPI\ThermalZone\TZ10_0
ACPI\ThermalZone\TZ00_0
<temperature.bat>
@echo off
rem Admin <cmd>
rem Results are in kelvin *10
rem °Celsius = (result / 10 ) - 273.15
echo Temperature with Thermal zones
echo Temperature is in Kelvin C = (K / 10) - 273.15
wmic /namespace:\\root\wmi PATH MSAcpi_ThermalZoneTemperature get CurrentTemperature,InstanceName
echo.
rem Without thermal zones
rem echo Temperature in Kelvin * 10 C = (K / 10) - 273.15
rem wmic /namespace:\\root\wmi PATH MSAcpi_ThermalZoneTemperature get CurrentTemperature
</temperature.bat>
>temperature.bat
Temperature with Thermal zones
Temperature is in Kelvin * 10 C = (K / 10) - 273.15
CurrentTemperature InstanceName
2900 ACPI\ThermalZone\TZ10_0
3010 ACPI\ThermalZone\TZ00_0
 
Back
Top Bottom