Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you uninstall another program in wix installer?

I have lost the GUID's for my old installer. I managed to get the upgrade id using Orca but it still does not remove the old version from the programs and features list. How can I uninstall an old msi/bootstrapper with a completely new one?

like image 611
ecw5 Avatar asked Jul 30 '15 19:07

ecw5


2 Answers

If you have a MSI to uninstall (i.e. not a bootstrapper) then you should be able to uninstall it with WIX <Upgrade> element, by specifying it there like that:

<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is installed." />

<Upgrade  Id="{YOUR-OTHER-STUFF-GUID-HERE}">
  <UpgradeVersion OnlyDetect="no" Property="OTHER_STUFF_FOUND" Minimum="0.0.0" />
</Upgrade>

If you have some EXE to uninstall, not MSI, then AFAIK only a custom action is a solution (just execute the uninstall line using custom action).

like image 174
Nikolay Avatar answered Sep 27 '22 19:09

Nikolay


-Make use of the windows installer API: MsiEnumRelatedProducts() to get a list of all the products that share the same UpgradeCode.

https://msdn.microsoft.com/en-us/library/aa370103(v=vs.85).aspx

This API returns the product code of all the products installed on the system that share the same UpgradeCode.

You can probably see examples of the usage of this over the internet or Windows installer SDK.

Also, there was one related question recently:

WiX - Allowing a *manual* uninstall of one msi to uninstall another msi that shares the same UpgradeCode (and not just during the MajorUpgrade)

-The other approach is to upgrade your old msi package using the new msi package.

http://wixtoolset.org/documentation/manual/v3/howtos/updates/major_upgrade.html

like image 31
Kiran Hegde Avatar answered Sep 27 '22 18:09

Kiran Hegde