Re: [WiX-users] wix uninstall of service

2012-10-25 Thread Senthil Chandran
XML toolset. Subject: Re: [WiX-users] wix uninstall of service You can add a condition to a custom action of $ProductComponent < 3 and not UPGRADINGPRODUCTCODE to get it to run only when the service component is being removed but not during a major upgrade. If you want it to run during a

Re: [WiX-users] wix uninstall of service

2012-10-25 Thread Peter Shirtcliffe
You can add a condition to a custom action of $ProductComponent < 3 and not UPGRADINGPRODUCTCODE to get it to run only when the service component is being removed but not during a major upgrade. If you want it to run during a major upgrade, remove the "and not UPGRADINGPRODUCTCODE". -Ori