today I found out that my installer does not uninstall correctly anymore. Meaning my app is not shown in control panel anymore after uninstalling from there but all files are still present. I looked at the log files and I see a lot of "disallowing uninstallation of component since another client exists" which afaik means I screwed up..
So what is the best way to cleanup my pc and to prevent it from happening in the future? What could have caused this? afaik a not completely uninstalled previous version of my app is the reason for this error?
Unfortunately, using VM is not possible for various reasons..
FYI: For developing and test purposes I usually test and create installer with 1.0.xxxxx where xxxxx often stays the same. My upgradecode is always the same. In addition I am using heat and wherever possible I am letting wix auto-generate GUIDs. Furthermore I have one CA to show my readme file after installation and one to execute a batch file (modifies registry entries using powercfg). Upon uninstall a executable is run to import an .reg file to restore modified registry entries (because they would be uninstalled by wix).
We recently had the case that one of our development machines couldn't remove all components on uninstallation. On other machines, however, the
WiX
setup worked as intended.So, if you uninstalled incorrectly an earlier version of your product and getting the message
Disallowing uninstallation of component: {GUID} since another client exists
there is a high chance that you have orphan components lying around in your registry.There is a much more elegant solution for deleting those hidden registry keys with
PowerShell
instead of using, as mentioned by others, a 3rd party application.If you want to get a more detailed explanation about the cause of the message
disallowing uninstallation...
take a look here.Even though this is a bit old link, however posting my findings which can be helpful to others, who are facing such same situation.
If you have found
"Disallowing uninstallation of component: {Some GUID} since another client exists"
in your log files, then the reason could be that your previous installations might still be referring to this component/GUID.Moreover if you take a risk that you will try to remove the registry keys manually, you might even not find the GUID in regedit.
But few of these registries might be there and they may be hidden. In such case use RegSeeker tool http://www.hoverdesk.net/ , which can help finding the hidden registries. Be alert and cautious as you going to deal with registries.
Based on the GUID, get the name of the component from your solution/project and find it using the "Find in registry" option of this tool. Verify and remove only those entries which you think are not needed.
Admittedly, I came to know about this tool using below link
http://www.daviddeley.com/solutions/msiexec/index.htm
It sounds like you need to uninstall the features (or whole products) that have installed your unwanted components. Windows Installer has an API for querying components, features and products. The WiX Toolset has incorporated a wrapper around the API called DTF. You can use it to query features by component.
So, break out your favorite .NET script runner (mine is LINQPad) and run a query. For example, to find out how to remove "candle.exe":
LINQPad Instant Share
Then, run
msiexec /x <ProductCode>
to remove all the features of the productsor
msiexec /i <LocalPackage> REMOVE=<FeatureName>
to remove just the features that installed the component.