How do I specify a different order to install / uninstall .msi packages in a Wix package?

This is my first Wix package, so I may not know the obvious things, but I have the following requirement:

If I have a Wix package package, inside which there is an application for downloading and two .msi packages (you can call them A and B). I understand that if I put them in the Chain element, they will be installed in this order, in my case I want A to be installed first and then B. However, when uninstalling, I want B to be deleted first, not A. what is possible?

Thank.

+5
source share
1 answer

What you are describing is the default behavior - if Burn sets A to B, then A will also be deleted after B.

After MsiPackage, , , , Chain, - Chain.

+6

All Articles