/
Reg_GetBinaryX64
Reg_GetBinaryX64
Description
Gets the value of a variable of type binary in 64 bit registry from a 32 bit context
Syntax
Reg_GetBinaryX64(sHandle, sKey, sVariable, bMustExist) As Boolean
Parameters
sHandle (String)
HKEY-handle
sKey (String)
Subkey path
sVariable (String)
Name of variable to read
bMustExist (Boolean)
TRUE if variable must exist
Return value
Result will be stored in gaValue
Example
VBScript
If bStatus Then bStatus = Reg_GetBinaryX64("HKLM", "Software\KeyName", "ValueName", False) If bStatus And IsArray(gaValue) Then For index = LBound(gaValue) To UBound(gaValue) bStatus = Job_WriteLog("Custom", "Index #" & index & ": " & cStr(gaValue(index)), bStatus, True) Next End If
Related functions
, multiple selections available,
Related content
$cs.Reg_GetInteger
$cs.Reg_GetInteger
More like this
$cs.Reg_GetString
$cs.Reg_GetString
More like this
$cs.Reg_GetExpandString
$cs.Reg_GetExpandString
More like this
$cs.Reg_SetInteger
$cs.Reg_SetInteger
More like this
$cs.Reg_SetString
$cs.Reg_SetString
More like this
$cs.Reg_EnumKey
$cs.Reg_EnumKey
More like this