Is it possible to create (prefferably with WiX) windows installer dialog with “hyperlink”, which would open another dialog window?
Something like “View detailed report” in this screenshot. My google skills aren’t helping with this.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, Windows Installer 5.0 added a HyperLink control. You can mark your installer as requiring 5.0 by setting the
InstallerVersionattribute of the Package element to500.Note that Windows Installer 5.0 comes with Windows 7, but no redistributables have been made available for earlier operating systems so far.
You can use the HyperLink control in wix by putting this XML in a custom dialog:
If you need more guidance on how to create and use a custom dialog in wix, you can take a look at this answer where I explain how to add a warning screen.