Archive: Tipical or Custom Install


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


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.

Can someone point me to a good example please,it's urgent!!!
Thanks!!!!


In your NSIS folder:
{NSIS_istalled_folder}\Examples\makensis.nsi or bigtest.nsi.