Choosing Sections
Is there a way to make it so the user can only choose one section to install. In other words, I want them to make a choice, but only one.
5 posts
This is the only way to allow this.. They will only be able to choose the install types that you specified like he asked. And the first one you can use what base files you want to be installed and what extra ones you want.. Or in the case like i use it.. I just use it as a place holder in cause you are using nsis to install something that there is nothing that is always required.
Outfile test.exe
InstType "Test1"
InstType "Test2"
InstType "Test3"
InstType /NOCUSTOM
Section "App Name Since this Always ON"
;Do install initialise or what not (This just here for place holder since can't deactive it
SectionEnd
Section "Test1"
SectionIn 1
;Do what you need for this selection
SectionEnd
Section "Test2"
SectionIn 2
;Do what you need here..
SectionEnd
Section "Test3"
SectionIn 3
;And again what you need
SectionEnd