Windows 10 wism: Whose temps are these?

ToddAndMargo2

Well-Known Member
Joined
Jul 5, 2021
Messages
21
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
 

Solution
Depends how the motherboard is presenting exposed sensors. It's likely a system wide thermal zone, so not specific to any one component.
Link Removed

Neemobeer

Windows Forum Team
Staff member
Joined
Jul 4, 2015
Messages
8,998
Depends how the motherboard is presenting exposed sensors. It's likely a system wide thermal zone, so not specific to any one component.
Link Removed
 

Solution

ToddAndMargo2

Well-Known Member
Joined
Jul 5, 2021
Messages
21
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