开发者

Wix - uninstall different product

开发者 https://www.devze.com 2023-03-15 16:46 出处:网络
Our main installer is calling another product (product B) 开发者_开发技巧installer This creates two entries in the \"\"add remove programs\" window.

Our main installer is calling another product (product B) 开发者_开发技巧installer

This creates two entries in the ""add remove programs" window.

When I uninstall the main product product B is not removed from machine.

Is there a way that I can uninstall product B when the main product is uninstalled?


You can try using a custom action with these settings:

  • it should be scheduled after InstallFinalize in InstallExecuteSequence
  • it should use this condition:

    REMOVE = "ALL"

  • use ExeCommand attribute to specify the msiexec.exe uninstall command line (you will use the actual ProductCode):

    msiexec.exe /x <product_code_B> /qb

  • set Return attribute to asyncNoWait so product B uninstall runs in a different process

0

精彩评论

暂无评论...
验证码 换一张
取 消