Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

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

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...