Skip to content
⌘ NSIS Forum Archive

Q: modern GUI and required section

3 posts

sanface#

Q: modern GUI and required section

Hi,

How can I specify a required Section with modern GUI?
I want the user can see it in the list but he can't uncheck it.
Section "txt2pdf${VER} (required)" SecCopyTxt2pdf
will work with no modern GUI.

Fabrizio
kichik#
Are you sure you don't mean no NSIS v2? In NSIS v2 you should use SectionIn RO to make the section read only so the user can't uncheck it.

Section bla secBlaName
SectionIn RO
  File bla.exe
SectionEnd