The RegistryGetValue command retrieves the data from the specified value using KeyName and ValueName parameters set by the SetRegistryPath command.
Syntax
PluginRun("PlugIn","RegistryGetValue")
PluginGet("PlugIn","Result")
or
PluginRun("PlugIn","RegistryGetValue")
PluginGet("PlugIn","StringOut$")
Parameters
Result
[out] A numeric variable that receives the value's data if the value type is REG_DWORD.
StringOut
[out] A string variable that receives the value's data if the value type is REG_SZ or REG_BINARY. If the value type is REG_BINARY then StringOut variable will recieve a sequence of byte values delimeted by comma. The bytes sequence can be converted to the normal string using GetArrayItem and CHR functions.