Пример #1
0
        public static extern MsiError MsiConfigureProductEx(string product,
			MsiInstallLevel level, MsiInstallState installState, string commandLine);
Пример #2
0
 /// <summary>Blah</summary>
 public static uint ConfigureProduct(
     Guid ProductCode, MsiInstallLevel InstallLevel, MsiInstallState InstallState, string CommandLine)
 {
     return MsiConfigureProductEx("{" + ProductCode.ToString().ToUpper() + "}", (int)InstallLevel,
       (int)InstallState, CommandLine);
 }
Пример #3
0
        public static extern MsiError MsiConfigureProduct(string product,
			MsiInstallLevel level, MsiInstallState installState);