WiX standard dialog sets
The wizards that come prebuilt with WiX won't fit every need, but they're a good place to get your feet wet. To begin with, use the Add a Reference screen in Visual Studio to add a reference to WixUIExtension.dll
. It can be found in the bin
directory of the WiX program files.
Adding this reference is like adding a new WiX source file. This one contains dialogs. To use one you'll need to use a UIRef
element to pull the dialog into the scope of your project. For example, this line, anywhere inside the Product
element, will add the "Minimal" wizard to your installer:
<UIRef Id="WixUI_Minimal" />
It's definitely minimal, containing just one screen.
It gives you a license agreement, which you can change by adding a WixVariable
element with an Id
value of WixUILicenseRtf
and a Value
attribute that points to a Rich Text Format (.rtf
) file containing your new license agreement:
<WixVariable Id="WixUILicenseRtf" Value="newLicense.rtf" />
You can also override...