Reg_SetString
Description
Set the value of a registry variable of type string
Â
Syntax
Reg_SetString(sHandle, sKey, sVariable, sValue) as Boolean
Â
Parameters
sHandle (String)
HKEY-handle
sKey (String)
Subkey path
sVariable (String)
Name of variable to contain the value
sValue (String)
Value
Â
Example
VBScript
If bStatus Then bStatus = Reg_SetString("HKLM", "Software\KeyName", "ValueName", "Value")
Â