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"
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 SteveRussellThis is definitely true!!!
Thank you. This is one of the very best - and most helpful - forums I have ever participated in.