I have tried to open the msi file using this code:
string msiFile = "MyInstallation.msi";
var session = Installer.OpenPackage(msiFile, false);
var language = session.Language;
var features = session.Features;
foreach (var feature in features)
{
var name = feature.Name;
var description = fe
I need to extract feature infos like Title and description from an msi package,
localized with different languages.I have seen the DTF samples like WiFile
where is described how to read package infos creating new InstallPackage.How
can I get feature infos? Is there some class like InstallFeature
2 matches
Mail list logo