Unable to Properly Uninstall Application after Slipstreaming Patch in Bundle #8760
Unanswered
KarthikChandran303
asked this question in
Questions
Replies: 1 comment 2 replies
-
I'm having a similar problem. I started looking at migrating my installation code from WiX 3.x to v6.0.0 and have found that WiX 6.0.0 generated bundles only uninstall the patch whereas in WiX 3.x both the MSI and the slipstreamed MSP were uninstalled when the bundle was uninstalled. Did you ever find a solution to this issue? Thanks, Darren |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
I have a Bundler that includes a "MainInstaller" msi package and a patch (which is slipstreamed) within a Chain like this:
<Chain>
<MsiPackage Id="MainInstaller" SourceFile="$(var.MainInstaller)" bal:DisplayInternalUICondition="WixBundleAction >= 0" Visible="no" Vital="yes" Permanent="no"/>
<MspPackage Id="Patch" SourceFile="$(var.Patch)" Vital="yes" After="MainInstaller" Slipstream="yes" Permanent="no"/>
</Chain>
Uninstalling the bundle only removes the slipstreamed patch. Any ideas as to why the main installer is not being removed?
I am also providing a part of my log which gets generated when I uninstall:
Thanks for the help!
Beta Was this translation helpful? Give feedback.
All reactions