Kevin Holleran wrote:
Long story short, I am using _winreg to do this.

hKey = _winreg.OpenKey (keyPath, path, 0, _winreg.KEY_SET_VALUE)
value,type = _winreg.QueryValueEx(hKey, item)
if (value == wrongValue):
       _winreg.SetValue(hKey,'',_winreg.REG_SZ,correctValue)


When I do this I receive the error:

_winreg.SetValue WindowsError: [Error 5] Access Denied

As an alternative, try using WMI instead. You'll have to look up the docs
a bit, but to get you started:

<code>
import wmi

reg = wmi.WMI ("remote-machine", namespace="default").StdRegProv

print reg.methods.keys ()

</code>

TJG
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to