9 references to InstallState
Microsoft.Win32.Msi (9)
NativeMethods.cs (1)
29public static extern uint MsiConfigureProductEx(string szProduct, int iInstallLevel, InstallState eInstallState, string szCommandLine);
WindowsInstaller.cs (8)
34public 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. 174public static InstallState QueryProduct(string productCode) 176return (InstallState)NativeMethods.MsiQueryProductState(productCode);