'Run Application Now' option
I was wondering if someone could tell me how I add a screen at the end of install saying "Run Application Now"? I've seen other NSIS installers do it, but I can't find the command to do it.
Many thanks
Archive: 'Run Application Now' option
'Run Application Now' option
I was wondering if someone could tell me how I add a screen at the end of install saying "Run Application Now"? I've seen other NSIS installers do it, but I can't find the command to do it.
Many thanks
Find all what you're asking about and much more on MUI documentation.
You should read it :-)
Thanks for the sarcastic reply, lots of help. It's hard to know what I should be searching for when i don't know what the command is called.... I've also tried searching the forum but again, if "Run now" doesn't return anything useful then what do I search for.
Originally posted by beaglelanderSorry, no mean to be sarcastic at any rate.
Thanks for the sarcastic reply, lots of help.
Thanks Red, sorry for the short fuse earlier - got some big deadlines to meet so a bit stressed out! I did try searching before posting
Alright mate, your code should look like this:
!define MUI_FINISHPAGE_RUN '$INSTDIR\MyApp.exe'
!define MUI_FINISHPAGE_RUN_TEXT 'text'
# Texts to display next to the 'Run program' checkbox
!define MUI_FINISHPAGE_RUN_PARAMETERS 'parameters'
# Parameters for the application to run.
# Don't forget to escape double quotes in the value (use $\").
!insertmacro MUI_PAGE_FINISH
Got it, works a treat! Thanks again :-)
For future improvements if you intent to install also on Vista
then plz follow this thread:
http://forums.winamp.com/showthread....hreadid=260722