Reads a value from the registry.
RegRead ( "keyname", "valuename" )
Parameters
keyname | The registry key to read. |
valuename | The value to read. |
Return Value
Success: | Returns the requested registry value value.. |
Failure: | Returns "" and sets the @error flag: |
1 if unable to open requested key | |
-1 if unable to open requested value | |
-2 if value type not supported |
Remarks
A registry key must start with "HKEY_LOCAL_MACHINE" ("HKLM") or "HKEY_USERS" ("HKU") or "HKEY_CURRENT_USER" ("HKCU") or "HKEY_CLASSES_ROOT" ("HKCR") or "HKEY_CURRENT_CONFIG" ("HKCC").
Related
RegDelete, RegWrite, StringSplit
Example
$var = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion", "ProgramFilesDir")
MsgBox(4096, "Program files are in:", $var)