Skip to content
⌘ NSIS Forum Archive

Multiple Installer

2 posts

ex-sys#

Multiple Installer

Hello,
can someone help me, please?!?!?!

that is that original script:


I need this with 5 sections - but, I not understand that
Assistance would be nice . . .

bye
Michael
JasonFriday13#
That requires an entire rewrite to have five pages. The simplest way around this is to use one components page and one instfiles page. Example:

SectionGroup "Software Package 1"

Section "Software Component 1"
SectionEnd

Section "Software Component 2"
SectionEnd

Section "Software Component 3"
SectionEnd

SectionGroupEnd

SectionGroup "Software Package 2"

Section "Software Component 1"
SectionEnd

Section "Software Component 2"
SectionEnd

SectionGroupEnd
etc.