I currently have a bootstrapper wix project that contains two msi projects. I'm trying to figure out the best way to do the following on installation/uninstallation/modify/repair.
It seems a custom action is in order (in each msi project) however I have yet to figure out the best way to only show the confirmation prompt one time (instead of once per msi) and also how to ensure the first msi doesn't restart the windows service and that the last msi does restart the windows service.
Essentially both msi projects require that a windows service be stopped before installation/uninstallation/etc although it should be restarted when the installer is complete. Ideas?
I ended up getting creative with a custom action to prompt the user at the correct point in the install/uninstall/etc flow which would then stop the service then start it back up after dealing with all MSIs in the chain.