Get.Registry.Value
Top  Previous  Next


Get.Registry.Value HKEY ; Key ; Value ; [RowSublabel]

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

Key
Name of key  
 
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.  

Value
Value to read data from, leave blank for default value or specify "*" to enumerate all values in a key  

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

Examples
1) Internet Explorer version

[Aux_Begin]
Get.Registry.Value HKEY_LOCAL_MACHINE ; SOFTWARE\Microsoft\Internet Explorer ; Version ; IE_VER
[Aux_End]


2) Default value - .doc association alias

[Aux_Begin] 
Get.Registry.Value HKEY_LOCAL_MACHINE;SOFTWARE\Classes\.doc ;; .doc 
[Aux_End]


3) Enumerate Internet Explorer typed URLs (Internet addresses manually entered by the user)

[Aux_Begin]
Get.Registry.Value HKEY_CURRENT_USER ; Software\Microsoft\Internet Explorer\TypedURLs ; * ; TypedURLs
[Aux_End]

4) Enumerate explorer advanced settings

[Aux_Begin]
Get.Registry.Value HKEY_CURRENT_USER ; Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced ; * ; Explorer_adv
[Aux_End]