cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

VB Script Custom Action Sequence

I have a script that has to run AFTER the application is installed and AFTER the user has clicked on the icon for the first time.

After the user clicks on the Icon, the advertised exe runs the installer. Is that the Advertise Exec Sequence?

I guess the first question is; is this even possible?

And the second question; where do I put the custom action in the sequence?

If you need more information, just let me know.

Thanks.
(1) Reply
You should put the custom action at the end of the install execute sequence with a condition that only executes during repair. This could be
Installed and (NOT(REMOVE="ALL"))
which means the app is installed but we are not uninstalling.

Let us know how that works.