At work we use WIX for building installation packages. We want that installation of product X it would uninstall previous version of that product on that machine. I've read several places on the iternet about major upgrade but couldn't get it to work. Can anyone please specify the exact steps that I need to take to add uninstall previous version feature to WIX?
|
|
I would suggest having a look at Alex Shevchuk's tutorial. He explains "major upgrade" through Wix with a good hands-on example at From MSI to WiX, Part 8 - Major Upgrade |
|||
|
|
|
The following is the sort of syntax I use for major upgrades:
As @Brian Gillespie noted there are other places to schedule the RemoveExistingProducts depending on desired optimizations. Note the PUT-GUID-HERE must be identical. |
||
|
|
|
|
The Upgrade element inside the Product element, combined with proper scheduling of the action will perform the uninstall you're after. Be sure to list the upgrade codes of all the products you want to remove.
Note that, if you're careful with your builds, you can prevent people from accidentally installing an older version of your product over a newer one. That's what the Maximum field is for. When we build installers, we set UpgradeVersion Maximum to the version being built, but IncludeMaximum="no" to prevent this scenario. You have choices regarding the scheduling of RemoveExistingProducts. I prefer scheduling it after InstallFinalize (rather than after InstallInitialize as others have recommended):
This leaves the previous version of the product installed until after the new files and registry keys are copied. This lets me migrate data from the old version to the new (for example, you've switched storage of user preferences from the registry to an XML file, but you want to be polite and migrate their settings). This migration is done in a deferred custom action just before InstallFinalize. Another benefit is efficiency: if there are unchanged files, Windows Installer doesn't bother copying them again when you schedule after InstallFinalize. If you schedule after InstallInitialize, the previous version is completely removed first, and then the new version is installed. This results in unnecessary deletion and recopying of files. For other scheduling options, see the RemoveExistingProducts help topic in MSDN. This week, the link is: http://msdn.microsoft.com/en-us/library/aa371197.aspx |
||
|
|
|
|
I used this site to help me understand the basics about Wix Upgrade http://www.tramontana.co.hu/wix/lesson4.php Afterwards I created a sample Installer, (installed a test file), then created the Upgrade installer (installed 2 sample test files) ... This will give you a basic understanding of how the mechanism work And As Mike said the book from Apress, "The Definitive Guide to Windows Installer" will help you out to understand, but it is not written using WIX. An other site that was pretty helpfull was this one: http://www.wixwiki.com/index.php?title=Main_Page HTH, CheGueVerra |
||
|
|
|
|
You might be better asking this on the WiX-users mailing list. WiX is best used with a firm understanding of what Windows Installer is doing. You might consider getting "The Definitive Guide to Windows Installer". The action that removes an existing product is the RemoveExistingProducts action. Because the consequences of what it does depends on where it's scheduled - namely, whether a failure causes the old product to be reinstalled, and whether unchanged files are copied again - you have to schedule it yourself.
The documentation for If your original installation did not include an |
||||
|
|
|
Finally I found a solution - I'm posting it here for other people who might have the same problem (all 5 of you):
From now on whenever I install the product it removed previous installed versions. |
||||||||||||||||
|
