I'm using the WiX Tool to create an installer.
I need the installer to make it optional, when creating Start Menu and Desktop shortcuts.
Something like: [ ] Do you want to create a start menu shortcut?
Is that possible?
|
I'm using the WiX Tool to create an installer. I need the installer to make it optional, when creating Start Menu and Desktop shortcuts. Something like: [ ] Do you want to create a start menu shortcut? Is that possible? |
||||
|
|
|
Yes, this is definitely possible. The general idea is to make the shortcut component be conditional on a property, then customize your UI to connect a checkbox to that property. All of this is described (though not for your specific example) in the Wix Tutorial, an insightful read. But here are some more specific code samples for your case: Add a PropertyCreate a property that you can hook the checkbox up to. In your .wxs file, add a
Add a ConditionAdd a
Add the CheckboxYou need to customize a dialog to add a checkbox to the UI and hook it up to the You'll need to download the wix source tree to get the .wxs files for the UI you are using. To add the checkbox to the Edit
Edit
Finally, reference your customized UI in your main .wxs file:
|
|||
|
|
|
On the checkbox click event or on the next button click you can call an custom action to create shortcuts. |
|||
|
|