Command FINDREG
Function:
Search the System Registry for a string.
Syntax:
FINDREG [hkey] "textstring"
| hkey | Specifies the name of the registry to search. |
| textstring | Specifies the text string to find. |
Note:
- When parameter hkey is not specified then all the registries are searched, otherwise parameter hkey must be on of the following System Registry names :-
HKEY_USERS
HKEY_CURRENT_USER
HKEY_LOCAL_MACHINE
HKEY_CLASSES_ROOT
- Command FINDREG will only search the following types and all other types are ignored :-
| REG_SZ | A null terminated string. |
| REG_DWORD | A 32 bit number. |
| REG_DWORD_LITTLE_ENDIAN | Same as REG_DWORD. |
| REG_DWORD_BIG_ENDIAN | A 32 bit number which is automatically converted to REG_DWORD format. |
- The search is not case sensitive.
|