Skip to content
⌘ NSIS Forum Archive

more then 1 exe file at the Finish_Page

2 posts

OsmanY22#

more then 1 exe file at the Finish_Page

Hi Guys ..

i want to choose more than 1 exe file at the finish Page to execute!


!define MUI_PAGE_CUSTOMFUNCTION_PRE SetCheckbox
!insertmacro MUI_PAGE_FINISH

Function SetCheckbox
!insertmacro MUI_INSTALLOPTIONS_WRITE "ioSpecial.ini" "Field 4" "Height" "50"
!define MUI_FINISHPAGE_RUN_TEXT "Execute!"
!define MUI_FINISHPAGE_RUN "$INSTDIR\run.exe"
FunctionEnd


So i can execute the run.exe file ... but i want to show more files to run.

run.exe
run2.exe
run.3.exe


Can someone helps me?
Afrow UK#
You need to add more CheckBox controls with MUI_INSTALLOPTIONS_WRITE.
There's code in this topic which adds two RadioButtons:
Are you a developer who uses NSIS to distribute your application? Are you a Winamp plug-in developer who wants to use NSIS to distribute your plug-in? Have suggestions for other people like you? This is the place.


-Stu