Archive: more then 1 exe file at the Finish_Page


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?


You need to add more CheckBox controls with MUI_INSTALLOPTIONS_WRITE.
There's code in this topic which adds two RadioButtons:
http://forums.winamp.com/showthread.php?threadid=205674

-Stu