9 references to InstallState
Microsoft.Win32.Msi (9)
NativeMethods.cs (1)
29
public static extern uint MsiConfigureProductEx(string szProduct, int iInstallLevel,
InstallState
eInstallState, string szCommandLine);
WindowsInstaller.cs (8)
34
public static uint ConfigureProduct(string productCode, int installLevel,
InstallState
installState, string commandLine)
168
/// <see cref="
InstallState
.ABSENT"/> if the product is installed for a different user.
169
/// <see cref="
InstallState
.ADVERTISED"/> if the product is advertised, but not installed.
170
/// <see cref="
InstallState
.DEFAULT"/> if the product is installed for the current user.
171
/// <see cref="
InstallState
.INVALIDARG"/> an invalid product code was passed to the function.
172
/// <see cref="
InstallState
.UNKNOWN"/> the product is neither advertised nor installed.
174
public static
InstallState
QueryProduct(string productCode)
176
return (
InstallState
)NativeMethods.MsiQueryProductState(productCode);