Quantcast
Channel: Windows Server – Yusuf Ozturk
Viewing all articles
Browse latest Browse all 127

Getting CPU Temperature via PowerShell

$
0
0
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) { […]

Viewing all articles
Browse latest Browse all 127

Trending Articles