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

2011-09-22 Thread Tim Golden
Not that it isn't a useful answer, but the original question was posed back in April 2008! http://mail.python.org/pipermail/python-win32/2008-April/007327.html TJG On 22/09/2011 12:54, kirancnair wrote: You can do something like this: import _winreg import wmi c = wmi.WMI(computer="XXX.XX

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

2011-09-22 Thread kirancnair
You can do something like this: import _winreg import wmi c = wmi.WMI(computer="XXX.XXX.XXX.XXX", user="devuser", password="devpass1!",namespace="root/default").StdRegProv result, names = c.EnumKey ( hDefKey=_winreg.HKEY_LOCAL_MACHINE, sSubKeyName="SYSTEM\ControlSet001\Services\MRxDAV" )

Re: [python-win32] Get path of the current open document of the current active application

2011-09-22 Thread Marte Soliza
Do you think most apps provide some interface in one way or another, especially major apps (e.g. MS Office apps, Adobe apps)? It's ok if we do this on an app-to-app basis, but for each app, how easy is it do you think will it take to determine the interface for them? Thanks for a very informative