WIX default installation feature not installed

I am very new to installing WIX, I have the following function:

<Feature Id="F_MyFeature" Title="My Feature" TypicalDefault="install" Level="1" Display="expand" >

Obviously, it appears in the list of functions as "Will be installed on the local hard drive"

I want this function to display "X" on it and not be installed by default, how do I do this?

+5
source share
1 answer

Features are marked for installation only if their Level is lower than the value of the INSTALLLEVEL property . Most installers have a low INSTALLLEVEL level, such as 4 or 1000.

, ​​ ( X), . 32767:

<Feature Id="F_MyFeature" Title="My Feature" TypicalDefault="install" Level="32767" Display="expand" >
+8

All Articles