Wix Open web page when uninstall completes

后端 未结 4 1828
夕颜
夕颜 2020-12-14 20:20

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.

4条回答
  •  囚心锁ツ
    2020-12-14 21:10

    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.

提交回复
热议问题