Skip to content

Instantly share code, notes, and snippets.

@garethflowers
Created July 11, 2013 13:39
Show Gist options
  • Select an option

  • Save garethflowers/5975517 to your computer and use it in GitHub Desktop.

Select an option

Save garethflowers/5975517 to your computer and use it in GitHub Desktop.
Wix: code to skip the licence prompt
<?xml version="1.0" encoding="utf-8"?>
<Wix>
<Product>
<!-- skip licence dialog -->
<UI>
<Publish Dialog="WelcomeDlg"
Control="Next"
Event="NewDialog"
Value="InstallDirDlg"
Order="2">1</Publish>
<Publish Dialog="InstallDirDlg"
Control="Back"
Event="NewDialog"
Value="WelcomeDlg"
Order="2">1</Publish>
</UI>
</Product>
</Wix>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment