Search code examples
htmlwixwix3.9

Customize Default WiX Bootstrap GUI


I want to create an additional button in default GUI of Bootstrapper set-up project. This button should be added when the set-up complete GUI is presented. I want to start an application when this button is clicked. Please see the attached screenshot as the current implementation, I want to modify it like, Lauch My app button should shown in testbootstrap completed UI, Is it possible?, if possible, please guide me for solving this soultion. enter image description here,

Please help.


Solution

  • Added the following item in bundle.wxs

     <Variable Name="LaunchTarget" Value="[ProgramFilesFolder]\test.exe "/>
    

    Then changed the string SuccessLaunchButton in .wxl file to the Launch my App.

    Thank you,

    George