Archive: Run installed app from installer


Run installed app from installer
I want to stop using the MUI_FINISHPAGE_RUN option and simply execute my installed app at the end of installation. Where do I do this?

ExecWait '"$INSTDIR\${PRODUCT_FILE_TITLE}.exe"


Is there anything wrong with doing this?:

Section -Post
WriteUninstaller "$INSTDIR\${PRODUCT_NAME}\uninst.exe"
. . .
Exec "$INSTDIR\${PRODUCT_FILE_TITLE}.exe"
Quit
SectionEnd


Yep that's fine just make sure you quote the path as shown in the docs for Exec.

Stu


Thank you. This is one of the very best - and most helpful - forums I have ever participated in.


Originally posted by SteveRussell
Thank you. This is one of the very best - and most helpful - forums I have ever participated in.
This is definitely true!!!
I am wondering if any question exists which cannot be answered by Afrow or Anders ;)