I have a custom action that I want to only run, during a UI install of my application.
If I have the following WIX xml :
<Custom Action="SetEnableMyNewFeature" After="SetSetEnableMyOldFeature">(NOT ENABLEMYNEWFEATURE) AND (((UILevel = 4) OR (UILevel = 5)) AND INSTALLING)</Custom>
Which doesn't seem to act as I want it to.
I need it to run when doing a UI install (not command-line, or repair)