Multiple exe files, 1 setup file
I have about 6 exe files that all needed to be installed on each new machine. I am looking to save time rather than install each one by hand. Ive looked in the docs for example but didnt find quite what I needed. I did a search and still am a bit unclear.
So far this is what I have:
; The name of the installer
Name "ARC Basic Install"
; The file to write
OutFile "basic-install.exe"
; The default installation directory
InstallDir $PROGRAMFILES\
;--------------------------------
; Pages
Page components
Page directory
Page instfiles
UninstPage uninstConfirm
UninstPage instfiles
;--------------------------------
; The stuff to install
Section "SSH"
ExecWait ...
SectionEnd
Section "Printscreen"
ExecWait ...
SectionEnd
Im not sure how to pull the outside exe files. Can the exec files be put into this main exe file I wish to make? I want a components page where the user picks which programs they wish to install.
Is there a way instead of having this nsi script call a different exe file to have it automatically install without the user having to push next, pick the install directory on each exe file that this script is calling?
Thanks for your time