We can use WMI to get CPU temperature via PowerShell: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 # Target Server $Server = "localhost" # Get Thermal Information $ThermalInformation = Get-WmiObject -ComputerName $Server -Namespace "root\wmi" -Class "MSAcpi_ThermalZoneTemperature" # Calculate CPU Temperature if ($ThermalInformation) { […]
↧