I'm using this little code snippet to catch Java processes with certain parameters:

string query = "Select * From Win32_Process Where Name = 'javaw.exe'";
ManagementObjectSearcher searcher = new ManagementObjectSearcher(query);
ManagementObjectCollection processList = searcher.Get();

foreach (ManagementObject obj in processList)
{
    string cmdLine = obj.GetPropertyValue("CommandLine").ToString();
    if (cmdLine.IndexOf("someapplication") != -1)
    {
        // ...
    }
}

This code worked like a charm just a couple of days ago when I didn't have SP1 for VS2010. Now it throws a null pointer exception on line 7. I'm trying to compile for .NET Framework 2.0.

Help!? :/

link|improve this question

What makes you believe that Visual Studio 2010 SP1 is the culprit? That seems highly unlikely. – Chris Shouts Oct 28 '11 at 20:23
This started to happen after I upgraded to SP1. But the issue wasn't there, thanks anyways. – dataviruset Oct 28 '11 at 20:27
feedback

2 Answers

up vote 1 down vote accepted

It probably has less to do with SP1 and more to do with a Java update. Just check for null:

string query = "Select * From Win32_Process Where Name = 'javaw.exe'";
ManagementObjectSearcher searcher = new ManagementObjectSearcher(query);
ManagementObjectCollection processList = searcher.Get();

foreach (ManagementObject obj in processList)
{
    object cmdLineValue = obj.GetPropertyValue("CommandLine");

    if(cmdLineValue != null) {
        string cmdLine = cmdLineValue.ToString();
        if (cmdLine.IndexOf("someapplication") != -1)
        {
             // ...
        }
    }
}
link|improve this answer
This was it. I feel a bit stupid... Thanks :) – dataviruset Oct 28 '11 at 20:27
feedback
if (cmdLine != null && cmdLine.IndexOf("someapplication") != -1)
link|improve this answer
Yeah, but ... let me put it this way. The cmdLine variable was never null before. – dataviruset Oct 28 '11 at 20:18
feedback

Your Answer

 
or
required, but never shown

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