pet_gr
1st February 2005 09:10 UTC
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
1st February 2005 11:36 UTC
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.
pet_Gr
2nd February 2005 09:15 UTC
Can someone point me to a good example please,it's urgent!!!
Thanks!!!!
glory_man
2nd February 2005 14:43 UTC
In your NSIS folder:
{NSIS_istalled_folder}\Examples\makensis.nsi or bigtest.nsi.