tags:

views:

143

answers:

2

I want the installer to skip showing setup type screen (where you can choose Typical, Custom, Complete features), How can I do this? I provided only one feature set named product. And I also want the user be able to change the installation directory.

Thanks.

+1  A: 

My application only has a licence screen then installation directory screen, and I use this configuration block to-do it:

<Property Id="WIXUI_INSTALLDIR" Value="INSTALLLOCATION" />
<UIRef Id="WixUI_InstallDir" />
<WixVariable Id="WixUILicenseRtf" Value="License.rtf" />

just before the end of my </Product> tag. All the application installs into INSTALLLOCATION in the <Directory> section.

The WixUI dialog library guide might help explain the options

Simeon Pilgrim
+2  A: 

If you only require the user to customize the installation folder, use:

  • WixUI_InstallDir

If you don't permit customization of the installation folder, use:

  • WiXUI_Minimal

Chances are you're using one of the built in libraries that does include the Feature Tree selction, i.e.

  • WixUI_Mondo
  • WixUI_FeatureTree
  • WixUI_Advanced
sascha