Without the help of the registry, how do I know whether MySQL is installed or not? I am trying to determine this on a Windows machine through C#.

I have found a solution that involves querying the registry, but I don't want to rely on this. Is there any function in C# for determining the currently installed software?

link|improve this question
2  
What do you want to accomplish? – Matten Dec 29 '11 at 12:15
@Matten: Should be clearer now... – Cody Gray Dec 29 '11 at 12:16
function in C# for determining the currently installed software ... Where that function will retrieve information from?... Registry – Haris Hasan Dec 29 '11 at 12:22
feedback

2 Answers

You can do this through WMI: the class you need is Win32_Product.

It's really easy in Powershell:

Get-WmiObject -Class Win32_Product 

will get the list of installed products, which you can then filter.

In C#, try the System.Management namespace:

    public bool CheckForMySQLServer()
    {
        string query = "SELECT Name FROM Win32_Product WHERE Name LIKE '%MySQL Server%'";

        var searcher = new ManagementObjectSearcher(query);
        var collection = searcher.Get();

        return collection.Count > 0;
    }

Note that this is hideously slow - takes over a minute on my PC - but you can get hold of the version number string if you need (see the GetText() method on the collection items).

link|improve this answer
feedback

Assuming that you also need to access MySQL (a.o.t. just knowing about its presence) you could

  • (Optional) load GAC copy of MySQL connector via reflection in a try-catch block, if that fails
  • load local copy of MySQL connector
  • Try to connect to localhost with bad username/password
  • Check error code. If this is "access denied" you have MySQL
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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