Is there a Powershell Script to remotely check the CPU temperature of a Domain PC. Thanks
Asked
Active
Viewed 2,279 times
0
-
Why would you only care about the CPU temperature when there are other components? – Chopper3 Sep 26 '16 at 10:42
1 Answers
2
I do not know of a ready-to-use script for that purpose. But a good starting point I used in the past might be
get-wmiobject MSAcpi_ThermalZoneTemperature -namespace "root/wmi"
which would query the temperature information via WMI.
Be aware though, this approach does not work on any hardware but is dependend on the Mainboard make and model.

pacey
- 3,833
- 1
- 16
- 31