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...
}
}
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.