I am reading WIX script written by others. There are some code really confuses me.
<Custom Action='UnLoadSchedulerPerfCounters' After='InstallInitialize'> <![CDATA[(Installed) AND (!Scheduler = 3)]]> </Custom> <Custom Action='RollbackSchedulerPerfCounters' After='WriteRegistryValues'> <![CDATA[(&Scheduler = 3)]]> </Custom>
So, what’s the difference between !Scheduler and &Scheduler? Is any special meaning when property is prefix-ed by & or !?
From http://www.tramontana.co.hu/wix/lesson5.php#5.3: