|
Gets the major version number of installer engine.
[VBScript]
n = Installer.VersionMajor
[JScript]
n = Installer.VersionMajor;
Remarks
This property returns the major version number of installer engine. It is used to determine whether specific installer action is available in the current project.
Example (VBScript)
If Installer.VersionMajor < 3 Then
CancelInstall
End If
Example (JScript)
if (Installer.VersionMajor < 3)
CancelInstall();
|