MSI.SetProperty

boolean MSI.SetProperty ( 

number hInstall,

string PropertyName,

string Value )

Description

Calls the MsiSetProperty function that sets the value for an installation property.

Parameters

 

hInstall

(number) The handle to the installation.

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

PropertyName

(string) The name of the property to set.

Value

(string) The value to set the property to.

Returns

(boolean) Returns true if the property is set properly. You can use Application.GetLastError to determine whether this action failed, and why.

See also:  Related Actions