programmatically checking if windows 2.0 is installed

  • Thread starter Thread starter romancoelho
  • Start date Start date
R

romancoelho

How can I programmatically check to see if windows installer 2.0 is
installed? Is there
a registry setting I can check?

Thanks!
 
using System.Diagnostics;
using System.IO;
........
string msiPath = Environment.SystemDirectory + "\\" +
"msi.dll";
if (File.Exists(msiPath))
{
//Make sure version is 2.0 or greater
if
(FileVersionInfo.GetVersionInfo(msiPath).ProductMajorPart < 2)
{
//Take action...
}
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top