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.
Archive: Choosing Sections
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.
use the InstType /NOCUSTOM which don't allow users to do custom Install types and then have a InstType for each one..
no what he means is can the user select only ONE section from a list of sections... but I can't answer that question :(
Yes i know what he means.. And doing what i said will give the same result.. Removing the Custom makes it so the user can only select what you have setup in the InstType
So do an example like this
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
Thank you..that pretty much did what I wanted. :D