What are "Enumerate subkeys" and "Notify" permissions in Registry?

-1

1

What are "Enumerate subkeys" and "Notify" permissions in the registry and what they allow to do?

Amirreza Nasiri

Posted 2013-10-11T08:10:35.593

Reputation: 2 418

http://technet.microsoft.com/en-us/library/cc783530(v=ws.10).aspx this explains all,the current state of question is too broad to explain could u elaborate with specific things – BlueBerry - Vignesh4303 – 2013-10-11T08:14:05.797

2Thanks, but i want to know what does EXACTLY do – Amirreza Nasiri – 2013-10-11T08:22:02.757

Answers

1

"Enumerate subkeys" is pretty much self-explanatory – it allows listing the names of all subkeys inside the given key, using the RegEnumKey function. (A "key" in Windows Registry terminology is like a folder.) So if you have this permission on HKLM\Software, then you're allowed to see the names below it – HKLM\Software\Adobe, HKLM\Software\Microsoft, etc.

"Notify" is described in @Vignesh4303's linked documentation as "request change notifications for registry keys or subkeys". That is, your programs are allowed to use RegNotifyChangeKeyValue and related functions, and be notified by Windows when another program makes any changes to that part of the Registry.

user1686

Posted 2013-10-11T08:10:35.593

Reputation: 283 655