Could Wix bundle ask if dependency is uninstalled? #6913
-
Hi, Currently our msi has a dependency for Microsoft VC redistributed package on Windows. So I use Wix bundle to install VC_redist.x64.exe first, then install our own msi. The installation is successful. For the uninstallation our application could be removed but the dependency VC redistributed package is still there. We understand it may be needed by other applications. So is there a way to pop up a window to confirm with user if user wants to uninstall it or not. So user could have a choice instead of leaving the dependency there untouched. I searched bundle, ExePackage and Chain. I did not see such an option. Does someone know how to achieve it or it is not doable? Thanks in advance!
Regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Yes, but the |
Beta Was this translation helpful? Give feedback.
Yes, but the
WixStandardBootstrapperApplication
does not support that scenario. So you'd need to develop your own bootstrapper application (BA) to implement that feature (plus all of the standard features required by a BA). It's a good but of work.