In my application i want to see if windows 7 is activated. To be clear, i do not want to check if windows are genuine. I use the code below, found here http://www.dreamincode.net/forums/topic/166690-wmi-softwarelicensingproduct/

The time needed to execute the query is about 5-10 sec. Is there anyway to reduce the time needed? Or another way to check if winows 7 is activated?

public string VistaOrNewerStatus(){
string status = string.Empty;
string computer = ".";
try
{
    //set the scope of this search
    ManagementScope scope = new ManagementScope(@"\\" + computer + @"\root\cimv2");
    //connect to the machine
    scope.Connect();

    //use a SelectQuery to tell what we're searching in
    SelectQuery searchQuery = new SelectQuery("SELECT * FROM SoftwareLicensingProduct");

    //set the search up
    ManagementObjectSearcher searcherObj = new ManagementObjectSearcher(scope, searchQuery);

    //get the results into a collection
    using (ManagementObjectCollection obj = searcherObj.Get())
    {
        MessageBox.Show(obj.Count.ToString());
        //now loop through the collection looking for
        //an activation status
        foreach (ManagementObject o in obj)
        {

            //MessageBox.Show(o["ActivationRequired"].ToString());
            switch ((UInt32)o["LicenseStatus"])
            {
                case 0:
                    status = "Unlicensed";
                    break;
                case 1:
                    status = "Licensed";
                    break;
                case 2:
                    status = "Out-Of-Box Grace Period";
                    break;
                case 3:
                    status = "Out-Of-Tolerance Grace Period";
                    break;
                case 4:
                    status = "Non-Genuine Grace Period";
                    break;
            }
        }
    }


   // return activated;
}
catch (Exception ex)
{
   // MessageBox.Show(ex.ToString());
    status = ex.Message;
    //return false;
}
return status;

}

link|improve this question
nope. thats the way to do it with wmi. not much youre gonna do to make it faster. – Frank White Feb 1 at 19:42
feedback

2 Answers

up vote 2 down vote accepted

I would recommend querying only the properties you really need. So, if you only need the LicenseStatus value of the SoftwareLicensingProduct WMI class then use the following query:

SelectQuery searchQuery = new 
            SelectQuery("SELECT LicenseStatus FROM SoftwareLicensingProduct");

This should improve your performance. As DJ KRAZE pointed out in his answer you should of course dispose your management classes.

On my Windows 7 machine using only the LicenseStatus property in the query took 246ms. Querying for all properties (using the "*") took 2440ms.

link|improve this answer
Thanks for the recognition Hans +2 to you now.. – DJ KRAZE Feb 1 at 20:52
This answer in combination with the answer below decreased time significally! Thx a lot guys! – vandervagos Feb 1 at 20:52
not a problem vandervagos.. here it's all about the learning and passing on that knowledge and experience. – DJ KRAZE Feb 1 at 20:54
@DJKRAZE: I totally aggree. – Hans Feb 1 at 21:01
feedback

This is generally the way WMI works it's querying at least.. where you have the following below .. after your foreach I would dispose of those objects ..

ManagementScope scope = new ManagementScope(@"\\" + computer + @"\root\cimv2");
//connect to the machine     
scope.Connect();      
//use a SelectQuery to tell what we're searching in
SelectQuery searchQuery = new SelectQuery("SELECT * FROM SoftwareLicensingProduct");
//set the search up     
ManagementObjectSearcher searcherObj

if they implement IDisposeable then you could do

((IDisposable)scope).Dispose();
((IDisposable)searchQuery).Dispose();
((IDisposable)searcherObj).Dispose();

if not then do an if() to check if the object != null then Dispose of them individually Try running this several times and seeing if it returns faster or not once you dispose of the objects.. other than that.. not much you can do from what it looks like to make it faster..

link|improve this answer
My problem is performance. I can try to dispose the objects you suggest but since my for each is executed the query will not be faster. In my understanding ManagementObjectCollection obj = searcherObj.Get() function is responsible for the time consuming – vandervagos Feb 1 at 20:11
I understand that but I am wondering if you run this once then start over again several times.. are you truly disposing of the created objects or are they sitting around in the Tray waiting to be freed by the GC take a look at this link as well for some possible performance counters you can setup .. look at the bottom of the page technet.microsoft.com/en-us/library/ee692772.aspx#EBPAC – DJ KRAZE Feb 1 at 20:13
+1 for your answer. Disposing objects is always a good idea - not only for performance reasons. – Hans Feb 1 at 21:00
feedback

Your Answer

 
or
required, but never shown

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