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"
Run installed app from installer
5 posts
Is there anything wrong with doing this?:
Section -Post
WriteUninstaller "$INSTDIR\${PRODUCT_NAME}\uninst.exe"
. . .
Exec "$INSTDIR\${PRODUCT_FILE_TITLE}.exe"
Quit
SectionEnd
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
Stu
Thank you. This is one of the very best - and most helpful - forums I have ever participated in.
This is definitely true!!!Originally Posted by SteveRussell View PostThank you. This is one of the very best - and most helpful - forums I have ever participated in.
I am wondering if any question exists which cannot be answered by Afrow or Anders 😉