MSAcpi_ThermalZoneTemperature class not showing actual temperature
- by jchoudhury
i want to fetch CPU Performance data in real time including temperature. i used the following code to get CPU Temperature:
try
{
ManagementObjectSearcher searcher =
new ManagementObjectSearcher("root\\WMI",
"SELECT * FROM MSAcpi_ThermalZoneTemperature");
foreach (ManagementObject…