Quote:
Originally Posted by Sebazz
Someone can help me ? What is the code for add this option in the iss script. Thanks

|
You need to create a checkbox like "create a desktop icon" , this is the same principle , also look at CreateShortcuts function in your .iss , you will understand.
StartMenuIcon:=CheckBoxCreate(WizardForm,x,x,x,x,' Create Start Menu Icons');
CheckBoxSetChecked(StartMenuIcon,True);
It creates a checkbox but you need to declare first StartMenuIcon as variable and add it in procedures as CheckBoxOnUp,CheckBoxOnUpdown , .. etc.