Loop Registry
Retrieves the contents of the specified registry subkey, one item at a time.
Key must be separated from RootKey by a slash instead of a comma, and both can be contained within a single variable. For example, Loop, Reg, HKLM\Software or Loop, Reg, %FullPathOfKey%.
Loop Registry (F9)
Parameters
  - Root Key
 
  - Must be either HKEY_LOCAL_MACHINE (or HKLM), HKEY_USERS (or HKU), HKEY_CURRENT_USER (or HKCU), HKEY_CLASSES_ROOT (or HKCR), or HKEY_CURRENT_CONFIG (or HKCC).
To access a remote registry, prepend the computer name and a colon, as in this example: \workstation01:HKEY_LOCAL_MACHINE 
  - Key
 
  - The name of the key (e.g. Software\SomeApplication). If blank or omitted, the contents of RootKey will be retrieved.
 
  - Values
 
  - If checked will include Values.
 
  - Keys
 
  - If checked will include keys.
 
  - Recurse
 
  - If checked will recurse into subkeys.
 
Remarks
The following variables exist within any registry-loop. If an inner registry-loop is enclosed by an outer registry-loop, the innermost loop's registry item will take precedence:
- A_LoopRegName, A_LoopRegType, A_LoopRegKey, A_LoopRegSubKey, A_LoopRegTimeModified
 
For a description of each variable follow the link in the Related section below.
Loop Registry