tags:

views:

56

answers:

1
+4  A: 

You can get a lot (but not all) of this via FileVersionInfo:

    FileVersionInfo fvi = FileVersionInfo.GetVersionInfo(path);
    string company = fvi.CompanyName;
    string productName = fvi.ProductName;
    string productVer = fvi.ProductVersion;
    // etc
Marc Gravell