Quantcast
Channel: Help with reg checks (does it exist, access denied, able to read, able to write/modify?)
Viewing all articles
Browse latest Browse all 9

Re:Help with reg checks (does it exist, access denied, able to read, able to write/modify?) (a_ahmed)

$
0
0
Another thing I figured out using is this:
 
 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.

Viewing all articles
Browse latest Browse all 9

Trending Articles