PDA

View Full Version : "Create Shortcut on Desktop" and "Quick Launch" checkbox?



Unregistered
01-20-2006, 05:51 AM
How do I ask if the end-user wants shortcuts on the desktop and in quick launch?

Great product!

linder
01-20-2006, 07:33 AM
Hello,

Very easy ;)

1. Use the Set Variable script function to create a new variable. For example: %ADDITIONALTASKS%

2. Create a "Check Boxes" dialog. In the Checkbox Text dialog properties enter "Create Desktop Shortcut". In the "Store Selection Results in Variable" listbox select %ADDITIONALTASKS%.

Then add something like the following:

If %ADDITIONALTASKS% Equals "1" on Position "1" Then
::Create Shortcut "SetupBuilder 5 Developer" to "Desktop\SetupBuilder 5 Developer" (Always Install)
End

HTH,