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