$temps = Get-CIMInstance MSAcpi_ThermalZoneTemperature -Namespace "root/wmi"
$temps | Select-Object -Property InstanceName,@{n="TempF";e={(($_.currenttemperature /10 -273.15) *1.8 +32)}}
I cannot seem to select-object -ExpandProperty like usual to get just the TempF result:
InstanceName TempF
------------ -----
ACPI\ThermalZone\THM__0 77.09
Just want the 77.09
Bonus points if can display in Celsius :)