Is there a Windows Registry “dictionary” that explains the whole (or most of) the Windows Registry? [closed]

StackOverflow https://stackoverflow.com/questions/57867

  •  09-06-2019
  •  | 
  •  

Question

I'd like to be able to see what registry keys are used for. A book on the registry would be fine as well. Info on Windows Vista changes would be great!

Was it helpful?

Solution

Oh, how I wish there was a single site where the registry was collectively documented by all who write values there! Keep in mind, any app can create its own set of registry keys and values, so it's not just MS who would be necessary to such an effort. Though they would be a key player!

In the meantime, there are two MS sites I use as startng points when I need to know what a particular key/value pair do:

Windows 2003 registry reference: http://technet.microsoft.com/en-us/library/cc778196.aspx

Windows 2000 Registry reference: http://technet.microsoft.com/en-us/library/cc974061.aspx

Keep in mind that since Windows is an evolving thing, even information about older versions can be very helpful. Also note that W2003 bears a lot of resemblance to XP. Sadly, I have not found a link to the Vista/Windows 2008 registries similar to the above.

When you need to know what's up with a specific key, and it's not found in one of the above links, try a search of that key's full path at http://support.microsoft.com

OTHER TIPS

The wikipedia article is actually rather nice. Not a full account of everything, but not too shabby either. http://en.wikipedia.org/wiki/Windows_Registry

Always look up APIs in the Windows SDK first instead of registry entries first . For example, if you store the path to the user's my document folder (yes it is in registery), your code may break when the user's registery roams to another machine where the user's profile is stored in a different location.

Suggested reading: The long and sad story of the Shell Folders key

I have used this help file in the past. Very good resource

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top