RegReadValue(Path)

Reads a value from the registry.

Parameters:

Path The path of the value that should be read

Remarks:

If the specified value does not exist, this function will return the value EMPTY. You can use the function IsEmpty() to determine if the function has succeeded. See Registry functions for more information.

Example:

s=RegReadValue("HKLM\Software\Microsoft\Windows\Desktop\BootCount")
If IsEmpty(s)=true then 'Value not found!
 Disable 'disable plug-in
else
 ' do something
end if