public static extern MsiError MsiConfigureProductEx(string product, MsiInstallLevel level, MsiInstallState installState, string commandLine);
/// <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); }
public static extern MsiError MsiConfigureProduct(string product, MsiInstallLevel level, MsiInstallState installState);