MSI.GetProperty

string MSI.GetProperty ( 

number hInstall,

string PropertyName )

Description

Calls the MsiGetProperty function that gets the value for an installer property.

Parameters

hInstall

(number) The handle to the install.

Note:  _hInstall is the default for this parameter. See Global Variables for more information.

PropertyName

(string) The property to get the value of.

Returns

(string) The value of the property. nil will be returned if this action fails to get the property.  You can use Application.GetLastError to determine whether this action failed, and why.

See also:  Related Actions