Another thing I figured out using is this:
This doesn't quite work either... it always throws error code 0 whether I use a fake key like SECURITYa or the denied key SECURITY.. it will detect that it has 'no access' but can't distinguish between a non existing key and an access denied key.
Const KEY_QUERY_VALUE = &H0001Const HKEY_LOCAL_MACHINE = &H80000002 strKeyPath = "SECURITY" 'strKeyPath = "SECURITYa" On Error Resume Next objReg.CheckAccess HKEY_LOCAL_MACHINE, strKeyPath, KEY_QUERY_VALUE, bHasAccessRight If bHasAccessRight = True Then Wscript.Echo "Has Query Value Access Rights on HKEY_LOCAL_MACHINE\" & strKeyPath Else Wscript.Echo "No Query Value Access Rights on HKEY_LOCAL_MACHINE\" & strKeyPath end if
This doesn't quite work either... it always throws error code 0 whether I use a fake key like SECURITYa or the denied key SECURITY.. it will detect that it has 'no access' but can't distinguish between a non existing key and an access denied key.