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

Help with reg checks (does it exist, access denied, able to read, able to...

Hi guys, I'm hoping you can help me out with what I'm trying to achieve.   I'm trying to write a routine to check if a certain registry key exists, if user has access to it and if a user can...

View Article



Re:Help with reg checks (does it exist, access denied, able to read, able to...

Another method I tried is this:   On Error resume next If oReg.EnumKey(HKEY_LOCAL_MACHINE, "SECURITY\", "", "") = 0 Then MsgBox "Key Exists" wscript.echo err.number Else MsgBox "Key Not Found"...

View Article

Re:Help with reg checks (does it exist, access denied, able to read, able to...

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...

View Article

Re:Help with reg checks (does it exist, access denied, able to read, able to...

You might be able to do it with regini.exe. I think XCacls probably would to. Powershell would probably be even easier.

View Article

Re:Help with reg checks (does it exist, access denied, able to read, able to...

The purpose of the script is to configure 8 IE settings and to have an audit trail.   So for each setting it first reads the current setting, logs it, continues, then sets it and logs it.   I need to...

View Article


Re:Help with reg checks (does it exist, access denied, able to read, able to...

Oh and how it works is, Bomgar transfers the script, runs it, and it runs as the current user. The restriction is basically we can only change what the user can change, hence the need for an audit...

View Article

Re:Help with reg checks (does it exist, access denied, able to read, able to...

Also can't use powershell as powershell is disabled on many clients, even our own company disables it for users.

View Article

Re:Help with reg checks (does it exist, access denied, able to read, able to...

It's legacy web based software that uses an ancient activex so one of the things we must enable is this in advanced options:   "allow software to run or install even if the signature is invalid"   As...

View Article


Re:Help with reg checks (does it exist, access denied, able to read, able to...

No one else? I need to basically have something in place to be able to know if a client has GPO restrictions... that its noted...

View Article

Browsing all 9 articles
Browse latest View live




Latest Images