Reputation: 1910
I have written an NSIS installer with three install sections like shown in this example (this is not my installer, but mine looks nearly the same):
But here the user has the chance to select some section, but this I want to avoid. Of course I know that sections are especially made for this but I just want to show the user what kind of parts my application has, but he should not be able to select/deselect something. Is this possible?
Upvotes: 0
Views: 918
Reputation: 12882
you can..
force a section to be selected at all times using SectionIn RO
allow at least one section to be selected (see NSIS\Examples\one-section.nsi
)
Upvotes: 2