The tag 'kelvin' on WindowsForum.com is used in discussions about temperature readings from hardware components, specifically in the context of interpreting thermal zone data from Windows Management Instrumentation (WMI). In one thread, a user queries how to identify which component's temperature is being reported (CPU, motherboard, or hard drive) when the values are given in kelvin multiplied by ten. The post demonstrates converting these readings to degrees Celsius using the formula (result / 10) - 273.15, with examples showing motherboard temperatures around 27.85°C and 29.85°C. This tag is relevant for users troubleshooting hardware temperatures or working with WMI thermal zone queries.
-
T
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) −...