Reputation: 3
Is there a way i can uninstall (and dont upgrade after) a previous version of my app, using an upgraded MSI (created in WIX)?
Is that possible at all?
Upvotes: 0
Views: 150
Reputation: 11003
Sorry, I missed the part with:
and dont upgrade after
I haven't see this done before. Why don't you just use the MSI from the original application to launch the uninstall?
If you want a simple double click package that performs the uninstall you can create an executable, doesn't matter the programming language, that executes this:
msiexec /x {..<product code>..}
Upvotes: 1