Skip to content
⌘ NSIS Forum Archive

Tipical or Custom Install

4 posts

Guest#

Tipical or Custom Install

Sorry i'm a newbie and i've been looking for some info on creating an nsis installer with a combo box in wich i can select the installation type that i wanna do. How can i make it?
Greetings from spain
Pedro Garcia Rodriguez
glory_man#
Use InstType function

InstType "Full"
InstType "Tipical"
When you declare sections use SectionIn function with indexes of sections:

Section "Main"
SectionIn 1 2
...
SectionEnd

Section "Second"
SectionIn 1
...
SectionEnd
Look at the documentation about these functions.