How to skip the function selection screen in the installer program created in WIX?

I want the installer to skip the installation type screen (where you can select Typical, Custom, Full functions), How can I do this? I have provided only one set of functions called product. And I also want the user to be able to change the installation directory.

+3
source share
2 answers

In my application, only the license screen and then the installation directory screen, and I use this configuration block for this:

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

immediately before the tag </Product>. All applications are installed in INSTALLLOCATIONthe section <Directory>.

WixUI

+2

, :

<UIRef Id="WixUI_InstallDir" />

, :

<UIRef Id="WixUI_Minimal" />

, , Feature Tree, ..

  • WixUI_Mondo
  • WixUI_FeatureTree
  • WixUI_Advanced
+4

Source: https://habr.com/ru/post/1725008/


All Articles