18 references to WindowsInstaller
dotnet (10)
Commands\Workload\Install\MsiInstallerBase.cs (6)
151_ = WindowsInstaller.SetInternalUI(InstallUILevel.None); 157uint error = WindowsInstaller.EnableLog(InstallLogMode.DEFAULT | InstallLogMode.VERBOSE, logFile, InstallLogAttributes.NONE); 176return WindowsInstaller.ReinstallProduct(productCode, DefaultReinstallMode); 328return WindowsInstaller.InstallProduct(packagePath, installProperties); 360return WindowsInstaller.ConfigureProduct(productCode, WindowsInstaller.INSTALLLEVEL_DEFAULT, InstallState.ABSENT,
Commands\Workload\Install\NetSdkMsiInstallerClient.cs (3)
786var result = WindowsInstaller.InstallProduct(msiPath, $"TARGETDIR={msiExtractionPath} ACTION=ADMIN"); 835uint error = WindowsInstaller.GetProductInfo(productCode, InstallProperty.VERSIONSTRING, out string versionValue); 1097uint error = WindowsInstaller.VerifyPackage(msiPayload.MsiPath);
Commands\Workload\Install\NetSdkMsiInstallerClient.InstallRecords.cs (1)
176relatedProductCodes = [.. WindowsInstaller.FindRelatedProducts(upgradeCode.ToString())];
finalizer (4)
Program.cs (4)
184uint error = WindowsInstaller.GetProductInfo(productCode, "ProductName", out string productName); 193_ = WindowsInstaller.SetInternalUI(InstallUILevel.None); 196error = WindowsInstaller.ConfigureProduct(productCode, 197WindowsInstaller.INSTALLLEVEL_DEFAULT,
Microsoft.Win32.Msi.Manual.Tests (2)
Program.cs (2)
77WindowsInstaller.SetInternalUI(InstallUILevel.None); 79uint error = WindowsInstaller.InstallProduct(path, "MSIFASTINSTALL=7 REBOOT=ReallySuppress");
Microsoft.Win32.Msi.Tests (2)
WindowsInstallerTests.cs (2)
13uint error = WindowsInstaller.GetProductInfo(productCode, property, out string propertyValue); 23InstallState state = WindowsInstaller.QueryProduct(productCode);