jinn
jinn

Reputation: 3

How can I uninstall my app using an upgraded MSI file created in WIX?

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

Answers (1)

Bogdan Mitrache
Bogdan Mitrache

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

Related Questions