Installer::ProductElevated property

The ProductElevated property of the Installer object returns True if the product is managed or False if the product is not managed.

This property is read-only.

Syntax

propVal = Installer.ProductElevated

Property value

The full product code GUID of the product. This parameter is required.

Remarks

The ProductElevated property uses the MsiIsProductElevated function. The return of the property does not take into account the AlwaysInstallElevated policy.

Examples

The following sample script demonstrates the use of the ProductElevated property .

Dim installer
Set installer = CreateObject("WindowsInstaller.Installer")

' 
' Install Orca tool per-machine
'
installer.InstallProduct "\\products\public\orca\orca.msi", "ALLUSERS=1"

'
' Verify Orca is managed
'

Dim bManaged
bManaged = installer.ProductElevated("{85F4CBCB-9BBC-4B50-A7D8-E1106771498D}")

If bManaged Then
    MsgBox "Success - Product Is Managed"
Else
    MsgBox "Failure - Product Is Not Managed"
End If

Requirements

Requirement Value
Version
Windows Installer 5.0 on Windows Server 2012, Windows 8, Windows Server 2008 R2 or Windows 7. Windows Installer 4.0 or Windows Installer 4.5 on Windows Server 2008 or Windows Vista. Windows Installer 4.5 on Windows Server 2003 and Windows XP
DLL
Msi.dll
IID
IID_IInstaller is defined as 000C1090-0000-0000-C000-000000000046

See also

Installer

Not Supported in Windows Installer 3.1 and earlier versions