- Revenera Community
- :
- InstallAnywhere
- :
- InstallAnywhere Forum
- :
- Re: Uninstall doesn't remove registry keys for file associations
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
Uninstall doesn't remove registry keys for file associations
In my installer I create multiple file association registry entries under HKEY_CLASSES_ROOT. I do this using the action Set Windows Registry - Multiple Entries. These are not removed when i uninstall my product. The entries i create under HKEY_LOCAL_MACHINE\SOFTWARE\MyProduct are removed on uninstall.
Is there any reason for this? How can I debug uninstall of my product or get uninstall logs?
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
Re: Uninstall doesn't remove registry keys for file associations
This seems to be due to the uninstaller's inability to delete
HKEY_CLASSES_ROOT keys when its default(Default) value is set.
If default registry value is not set, the HKEY_ROOT keys added are getting deleted on
uninstall, when Uninstall Options in the "Set Windows Registry - Multiple Entries"
action is set to "Force removal even if values has changed".
The keys with default value set are not deleted but seems false positive
is seen in log. Since file association keys require setting default value,
The workaround will be to :
set Uninstall options to "Do not Uninstall"
and add a script to delete the keys in Sequence->Uninstall phase.
or
set Uninstall options to "Force removal even if values has changed"
and add a script in Uninstall phase to delete only default values of the keys
and let the uninstaller to remove the keys.
Sequence->Uninstall->Add Action->General->Execute Script/Batch file.
To get Uninstall log, enable logging as belows:
In InstallAnywhere designer->Project-> General Setting-> Enable Logging -> select yes
Select install checkbox & uninstall checkbox
The log file will be found in the <InstallDir>/Logs folder after install/uninstall.