[python-win32] Accessing a Remote Registry....

Tim Golden mail at timgolden.me.uk
Tue Apr 15 19:34:54 CEST 2008


Quick answer because I don't have time for a slow
one right now :). Do something like this:

<code>
import wmi

reg = wmi.WMI (
   "other-box",
   user="tim", password="secret",
   namespace="root/default"
).StdRegProv

</code>

TJG


More information about the python-win32 mailing list