Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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();

            }
        }
    }
share|improve this question
Do you want get the number of processors or the CPU usage? – RRUZ Mar 16 '12 at 14:35
1  
I am actually looking more to return the CPU usage, I was taking stabs in the dark to pull back anything with NumberOfProcessors. – jpavlov Mar 16 '12 at 14:51

1 Answer

up vote 0 down vote accepted

you can can iterate directly over the collection returned by ManagementObjectSearcher.Get method using a ManagementObject variable, from here you can access you can access each property using the item property or through the [] notation.

Check this sample application.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Management;
using System.Text;

namespace ConsoleFoo
{
    class Program
    {
        static void Main(string[] args)
        {
            try
            {
                ManagementObjectSearcher mgtObj = new ManagementObjectSearcher("root\\CIMV2", "SELECT * FROM Win32_ComputerSystem");
                foreach (ManagementObject item in mgtObj.Get())
                {
                    Console.WriteLine("Number Of Processors  {0}", item["NumberOfProcessors"]);
                }
            }
            catch (ManagementException e)
            {
                Console.WriteLine("Exception {0} ", e.Message);
            }
            Console.ReadKey();
        }
    }
}
share|improve this answer
Do you know which collection carries the cpu usage? – jpavlov Mar 16 '12 at 18:34
you must access the performance counters, try using classes like Win32_PerfFormattedData_PerfProc_Process – RRUZ Mar 16 '12 at 18:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.