After Data Move Handlers

InstallShield 2016 » InstallScript Language Reference

The following event handlers are triggered after files and other data are transferred to the target computer:

After Data Move Handlers

Event Handler

Project Type

Description

OnFirstUIAfter

InstallScript

InstallScript MSI

In InstallScript projects: The OnFirstUIAfter event called by OnShowUI after the file transfer of the setup when the setup is running in first install mode. By default this event displays UI that informs the end user that the setup has been completed successfully.

Note • This event is not called automatically in a program...endprogram style installation.

In InstallScript MSI projects: Responds to the First UI After event.

OnMaintUIAfter

InstallScript

InstallScript MSI

In InstallScript projects: The OnMaintUIAfter event called by OnShowUI after the file transfer of the setup when the setup is running in maintenance mode. By default this event displays UI that informs the end user that the maintenance setup has been completed successfully.

Note • This event is not called automatically in a program...endprogram style installation.

In InstallScript MSI projects: Responds to the Maintenance UI After event.

OnUpdateUIAfter

InstallScript

The OnUpdateUIAfter event called by OnShowUI after the file transfer of the setup when the setup is running in update mode. By default this event displays UI that informs the end user that the maintenance setup has been completed successfully. This event is not automatically called in a program.

OnEnd

InstallScript

InstallScript MSI

In InstallScript projects: The OnEnd event is called at the end of the setup. This event is not called if the setup is aborted.

In InstallScript MSI projects: Responds to the End event, the last redefinable event in a setup.

OnSuiteInstallAfter

InstallScript

The OnSuiteShowUI event calls the OnSuiteInstallAfter event after file transfer has completed during an installation.

Note • This event is not called automatically in a program...endprogram style installation.

OnSuiteMaintAfter

InstallScript

The OnSuiteShowUI event calls the OnSuiteMaintAfter event after file transfer has completed during maintenance.

Note • This event is not called automatically in a program...endprogram style installation.

OnSuiteUpdateAfter

InstallScript

The OnSuiteShowUI event calls the OnSuiteUpdateAfter event after file transfer has completed during an upgrade.

Note • This event is not called automatically in a program...endprogram style installation.

OnIISUninitialize

InstallScript

The OnIISUninitialize event is called by OnMoveDataAfter to initialize the IIS runtime.

Note • This event is not called automatically in a program...endprogram style installation.

OnXMLUninitialize

InstallScript

The OnXMLUninitialize event is called by OnMoveDataAfter to initialize the XML runtime.

Note • This event is not called automatically in a program...endprogram style installation.

See Also