I have a custom action that is working in Installshield 2009 that I am not sure how to port to WiX. Syntax looks right to me, according to this page, but VS2015 and WiX 3.10.2 are quite unhappy... informing me that Entity SA' is not defined in the Not &SA=3
portion.
I tried wrapping the values in the RHS of the conditions with quotes, to no avail. I do have a <Feature Id="SA" ...
defined earlier (was after my custom actions, thought moving it up in the wxs file would help, it did not).
<InstallExecuteSequence>
<Custom Action="CA_StopClientService" After="StopServices" >((REMOVE="ALL") And (!SA=3)) Or ((Not &SA=3) And (!SA=3))</Custom>
What am I missing here?