I have looked through a number of posts on here regarding the WMI and am still having a little trouble. I would like to retrive the CPU useage from WMI, my query retrieves everything the ManagementObjectSearcher has to offer, but it returns a null and never pulls any information back.
Also, for the datatype I am pulling should I be using a int16?
Hopefully someone can shed a little light on this and send me on my way. Thanks.
public void GetPhysicalMemory()
{
ManagementObjectSearcher mgtObj = new ManagementObjectSearcher("root\\CIMV2", "SELECT * FROM Win32_ComputerSystem"); // Win32_OPeratingSystem");
ManagementObjectCollection mgtColl = mgtObj.Get();
// foreach (ManagementObject obj in mgtObj.Get())
if (mgtColl.Count != 0 )
{
foreach (ManagementBaseObject mgtBaseObj in mgtColl)
{
var[] data = mgtBaseObj["NumberOfProcessors"] as int16[];
if (data != null)
{
Console.WriteLine(data);
}
else
{
Console.WriteLine("Collection = null");
Console.Read();
Console.Read();
}
}
}