Read Platform information from .msi
Asked Answered
L

1

6

I'm using the Microsoft.Deployment.WindowsInstaller libraries to read out values from a .msi file. Properties are no problem, and the summary-information can also be read out, example:

 static void Main(string[] args)
 {
    using (var database = new QDatabase(@"C:\myMsi.msi", DatabaseOpenMode.ReadOnly))
    {
         Console.WriteLine(database.ExecutePropertyQuery("ProductVersion"));
         Console.WriteLine(database.ExecutePropertyQuery("ProductName"));
         Console.WriteLine(database.ExecutePropertyQuery("Manufacturer"));
         Console.WriteLine(database.ExecutePropertyQuery("ARPREADME"));
     }
 }

The QDatabase object even has a nice SummaryInfo property, holding the summary information. However, I haven't found out how to get the platform for which the .MSI is intended for.

It would seem that platform can be read out, as Orca also does this (the platform can be seen when opening the Summary Information in Orca).

How can I get the platform for which the .msi was intended?

Locket answered 12/11, 2014 at 13:53 Comment(0)
B
5

You are using a class that is meant to do LINQ queries of the database. ExecutePropertyQuery is a method that simplifies querying the Property table. As you noted the information you seek isn't in the property table, it's in the Summary Information Stream. Specifically:

Template Summary property

using Microsoft.Deployment.WindowsInstaller;
using(Database database = new Database(PATH_TO_MSI, DatabaseOpenMode.ReadOnly))
{
  Console.WriteLine(database.SummaryInfo.Template);
}

The QDatabase class also exposes the SummaryInfo property also as it extends the Database class.

Queryable MSI database - extends the base Database class with LINQ query functionality along with predefined entity types for common tables.

Baerman answered 12/11, 2014 at 14:52 Comment(2)
Actually, I didn't see that the Database class also has an ExecutePropertyQuery function, this really means that I don't need the QDatabase (Linq) version. Thanks a lot for your answer, I now will just check if "64" occurs somewhere in the SummaryInfo.Template string.Locket
For future readers: checking if 64 occurs in the SummaryInfo.Template string only works if we are not interested on a distinction between Intel64 and x64 installers, see the msdn.microsoft.com/en-us/library/aa372070(v=vs.85).aspx for the actual possible values.Locket

© 2022 - 2024 — McMap. All rights reserved.