RegPathExists(Path)

Returns TRUE if the specified path does exist or FALSE if not.

Parameters:

Path The path to check

Remarks:

This function can only be used to check if registry-paths do exist. To check if a value exists, use the RegReadValue function and check the return value (it's EMPTY if the value does not exist). See Registry functions for more information.

Example:

b=RegPathExists("HKLM\Software\Microsoft\Internet Explorer")
If b=true then 'user has installed IE
 '... do something ....
else 'disable plugin
 Disable
end if