Reg_SetBinary
Description
Set the value of a registry variable of type binary
Syntax
Reg_SetBinary(sHandle, sKey, sVariable, vValue) as Boolean
Parameters
sHandle (String)
HKEY-handle
sKey (String)
Subkey path
sVariable (String)
Name of variable to contain the value
vValue (Variant)
Binary value. Must be integers only
Example
VBScript
Redim aTmp(2) aTmp(0) = "10" aTmp(1) = "1" aTmp(2) = "5" Â If bStatus Then bStatus = Reg_SetBinary("HKLM", "Software\KeyName", "ValueName", aTmp)