0

Is there a Powershell Script to remotely check the CPU temperature of a Domain PC. Thanks

Bart
  • 9
  • 3

1 Answers1

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