Multiple Installer
Hello,
can someone help me, please?!?!?!
that is that original script:
http://nsis.sourceforge.net/Two_inst..._one_installer
I need this with 5 sections - but, I not understand that
Assistance would be nice . . .
bye
Michael
Archive: Multiple Installer
Multiple Installer
Hello,
can someone help me, please?!?!?!
that is that original script:
http://nsis.sourceforge.net/Two_inst..._one_installer
I need this with 5 sections - but, I not understand that
Assistance would be nice . . .
bye
Michael
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.