CPU & case temperature

All questions related to installations, configurations and maintenance of Advanced Host Monitor (including additional tools such as RMA for Windows, RMA Manager, Web Servie, RCC).
Post Reply
megasound

CPU & case temperature

Post by megasound »

hi all
is the a way the measure the CPU temprature and/or the case temperature ?
I was looking in the WMI explorer but could not find any results there.

Many thanks in advance
m
KS-Soft Europe
Posts: 2832
Joined: Tue May 16, 2006 4:41 am
Contact:

Post by KS-Soft Europe »

Usually servers provide such information using SNMP protocol.
If you hardware comes with appropriate SNMP agent, use SNMP Get test method. http://www.ks-soft.net/hostmon.eng/mfra ... tm#chkSNMP

Also you may use WMI test and query like "Select Status from Win32_TemperatureProbe" http://www.ks-soft.net/hostmon.eng/mfra ... ts.htm#wmi

However, some special WMI driver/provider should be installed in order to get Win32_TemperatureProbe class to work. As far as I know only a limitted number of vendors (HP-Compaq, IBM ...) are delivering this as part of their system management packages for some of their high-end WS and Servers. Probably, you shoul use following query:

Code: Select all

SELECT CurrentTemperature FROM MSAcpi_ThermalZoneTemperature
To use this query, you should specify "Root\WMI" into "Name Space" input box in "Test Properties" window.

Regards,
Max
megasound

thanks

Post by megasound »

yes that works
i get as result : 3203
whats that ? Ferenheit ? Celsius ?

can you help me on this ?
KS-Soft Europe
Posts: 2832
Joined: Tue May 16, 2006 4:41 am
Contact:

Post by KS-Soft Europe »

CurrentTemperature counter represents temperature at thermal zone in tenths of degrees Kelvin. If you need Celcius, you may use "Tune up Reply value" option with the following expression:

Code: Select all

[(%SuggestedReply% - 2732) div 10]
Regards,
Max
Post Reply