I\'m using Wix3. I need to open a web page when the user uninstalls the product.
Any ideas how it can be done?
Thanks.
Add these XML elements somewhere under your
element:
REMOVE="ALL"
The REMOVE="ALL"
condition will make sure the custom action is executed only if the product is being completely removed.
The After="InstallValidate"
makes sure that the custom action is executed right after the REMOVE property value becomes known.