OnMoving

InstallShield 2016 ยป InstallScript Language Reference

In InstallScript projects, OnMoving is called as a result of the installation calling FeatureTransferData or Feature MoveData. The event is called before any file transfer operations occur. In InstallScript MSI projects, OnMoving is called just before the action GenerateMSIScript is executed.

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;