OnInstallingFile
InstallShield 2024 » InstallScript Language Reference
Project:
The OnInstallingFile event handler function is called when a file is about to be installed as a result of FeatureTransferData or FeatureMoveData.
Code in this event handler is always executed, even during a maintenance setup, unless you place it inside the following if-then structure:
if !MAINTENANCE then
\\ non-maintenance code
endif;
Syntax
OnInstallingFile ( szFilename );
Parameters
Parameter |
Description |
szFilename |
Specifies the fully qualified file name of the file that is about to be transferred. |
Return Values
None.