Installer::ProductElevated Property

Windows Installer

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.

Syntax

Script
Installer.ProductElevated

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

VersionWindows Installer 5.0 on 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
DLLMsi.dll
IIDIID_IInstaller is defined as 000C1090-0000-0000-C000-000000000046

See Also

Installer

Send comments about this topic to Microsoft

Build date: 8/13/2009

© 2009 Microsoft Corporation. All rights reserved.