Metalhead89
Metalhead89

Reputation: 1910

How to display sections in NSIS without letting the user choose a section

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):

Example for section screen

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

Answers (1)

idleberg
idleberg

Reputation: 12882

you can..

  1. force a section to be selected at all times using SectionIn RO

  2. allow at least one section to be selected (see NSIS\Examples\one-section.nsi)

Upvotes: 2

Related Questions