MSI.GetProperty

string MSI.GetProperty ( 

number hInstall,

string PropertyName )

Example 1

PropertyValue = MSI.GetProperty(_hInstall, "INSTALLDIR");

Dialog.Message("Property Value", "The installation directory is: \r\n"..PropertyValue);

Gets the value of the installer property named "INSTALLDIR" and shows its value in a dialog message.

See also:  Related Actions