Karthi
Karthi

Reputation: 585

How to make the checkbox visible in wix installer?

I have an issue in WIX installer. At the end of the finish dialog, there is a check-box. By default it is enabled to run an application. I don't know why the check-box is hiding whenever the finish dialog comes. Please help me on this?

I need to make the check-box visible by default at the finish dialog?

Upvotes: 0

Views: 430

Answers (1)

Wim Coenen
Wim Coenen

Reputation: 66733

WiX will only show that checkbox if the WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT property is set. Include the following somewhere under your Product element:

<Property 
   Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" 
   Value="Launch Application" />

For more details, see the section How To: Run the Installed Application After Setup in the WiX Toolset manual.

Upvotes: 1

Related Questions