Enumerate.Registry.Keys
Top  Previous  Next


Enumerate.Registry.Keys HKEY ; Key ; [RowSublabel]

HKEY
Options: HKEY_LOCAL_MACHINE | HKEY_USERS | HKEY_CURRENT_USER  
Notice: HKEY_CURRENT_USER requires Remote admin service  

Key
Name of key to enumerate subkeys from  
 
Extra spaces between words and delimiters in key name are not allowed, example: "SOFTWARE \ Microsoft" will not work, change to "SOFTWARE\Microsoft".  
 
Best way to get correct key name is to copy from the registry editor: click Windows "start" button, select "run", type "regedit", click "OK", navigate to the key you want to use, right click and choose "copy key name", paste in AdmWin.  

RowSublabel [Optional parameter]
Label to write in second column in NTinfo  

Example
Show all software vendors

[Aux_Begin]
Enumerate.Registry.Keys HKEY_LOCAL_MACHINE ; SOFTWARE ; SOFT 
[Aux_End]