Need to run a VB script after the installation finishes , VB script is part of installation which installs under "c:\" , how can this be achieved thru Custom actions.
Tried adding the run VBS from installtion after installfinalize in execute immediate..
the script needs to run after i click on finish (full UI install)
Answers (1)
Easy, If you use Installshield by using the Project Assistant and at the "Installation Interview" step select "yes" for "Do you you want to give users the option to launch your application when the installation completes" ( and browse to the vb)
OR if you want to run the CA when the user clicks FINISH follow these steps:
1. Go to Dialogs in your ISM
2. Select the "SetupCompleteSucces" Dialog
3. Go to "Behaviour"
4. Go to "OK"
5. Add Event "DoAction"
6. Select your CA for Argument
7. Condition = 1 to trigger under any circumstance ( or create your own condition)
ALTERNATIVE:
1. Go to Table "ControlEvent"
2. Add Row
Dialog = SetupCompleteSuccess
Control = OK
Event = DoAction
Argument= your CA
Condition = 1 ( or any other condition you prefer..)
Comments:
-
Thank You jaybee96 :) - ZODvk 11 years ago