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
In this way it's possible to access the properties such as Title and
Description in the current language of the msi, but if I have a multi
language msi is there any simple way to read the localized Text and
Description even for the other languages?
I need to change the language of my installer from
2 matches
Mail list logo