Hello ?

It DOES that acutally:

quote:
EXISTKEY( )

Action: Checks for the existence of a registry subkey.
Syntax: EXISTKEY ("subkey")
Parameters: Subkey
Identifies the subkey you want to locate.

Remarks: The values returned by EXISTKEY have the opposite meaning of the values returned by EXIST.
Returns: 0
Subkey found

1
Subkey not found


Example: $ReturnCode = ExistKey ("HKEY_CURRENT_USER\Console\Configuration")
If $ReturnCode = 0
? "Key exists...."
Endif




[ 09. December 2002, 10:28: Message edited by: jpols ]
_________________________