Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
951 views
in Technique[技术] by (71.8m points)

windows - Wix - uninstall different product

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...