Is it possible to see the Harrdisk temperature with somekind of S.M.A.R.T API or anything like that?
i just want the temp, nothing else in C#
Is it possible to see the Harrdisk temperature with somekind of S.M.A.R.T API or anything like that?
i just want the temp, nothing else in C#
use VMI and MSStorageDriver_ATAPISmartData
to get VendorSpecific
byte array and 115 byte number is temperature. Why 115? More here.
Code partly generated with VMI Code Creator
ManagementObjectSearcher searcher = new ManagementObjectSearcher("root\\WMI",
"SELECT * FROM MSStorageDriver_ATAPISmartData");
foreach (ManagementObject queryObj in searcher.Get())
{
if (queryObj["VendorSpecific"] != null)
{
byte[] arrVendorSpecific = (byte[])(queryObj["VendorSpecific"]);
string temp = arrVendorSpecific[115].ToString();
}
}
Here is code snippet from this article Hope it helps