Possible Duplicate:
How do I know what registry keys should be removed?
I am charged with creating a registry cleaning feature for part of our product (which happens to be in Java). But I would like some suggestions on which cleanups to start with. I searched the web and found very little. So far I have only come up with 2 things I can do:
- According to my personal experiences: A key with no values or sub-keys in the
HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstalllocation is safe to delete. And most if not all keys in that location without the values NoRemove, UninstallString or DisplayName can be safely removed. - And keys/values listed in the locations mentioned here which link to programs that no longer exist should be deleted.
Registry Cleaners I have seen boast that they are finding and fixing registry errors. What do they mean by errors? How would I track down an error and how would I fix it?
What are some rules or logic I can use to find out what keys and values can and should be deleted?
I am not trying to make The Best Of The Best. I just want something that makes the registry a little cleaner without taking to much risk.