Re: WMI remote call in python script to create process on remote windows computer

2009-10-08 Thread Tim Golden
David Jackson wrote: ok, cut and pasted, but changed the username/password to protect the innocent. this is from interactive prompt. let me know if i am still not doing the slashes correctly please. i doubt authentication is the issue.; i can get pid information using WQL queries.

Re: WMI remote call in python script to create process on remote windows computer

2009-10-08 Thread Processor-Dev1l
On Oct 8, 10:22 am, Tim Golden m...@timgolden.me.uk wrote: David Jackson wrote: ok, cut and pasted, but changed the username/password to protect the innocent. this is from interactive prompt. let me know if i am still not doing the slashes correctly please. i doubt authentication is

Re: WMI remote call in python script to create process on remote windows computer

2009-10-08 Thread Tim Golden
Processor-Dev1l wrote: On Oct 8, 10:22 am, Tim Golden m...@timgolden.me.uk wrote: David Jackson wrote: ok, cut and pasted, but changed the username/password to protect the innocent. this is from interactive prompt. let me know if i am still not doing the slashes correctly please. i doubt

Re: WMI remote call in python script to create process on remote windows computer

2009-10-07 Thread David Jackson
ok, cut and pasted, but changed the username/password to protect the innocent. this is from interactive prompt. let me know if i am still not doing the slashes correctly please. i doubt authentication is the issue.; i can get pid information using WQL queries. objCreateProc.Create expects 4

Re: WMI remote call in python script to create process on remote windows computer

2009-10-07 Thread Dave Angel
David Jackson wrote: ok, cut and pasted, but changed the username/password to protect the innocent. this is from interactive prompt. let me know if i am still not doing the slashes correctly please. i doubt authentication is the issue.; i can get pid information using WQL queries.

WMI remote call in python script to create process on remote windows computer

2009-10-06 Thread davidj411
import win32com.client computer = server strUser = server\user_name strPassword =my_password objSWbemLocator = win32com.client.Dispatch (WbemScripting.SWbemLocator) objSWbemServices = objSWbemLocator.ConnectServer(computer, root \cimv2,strUser,strPassword) objCreateProc =

Re: WMI remote call in python script to create process on remote windows computer

2009-10-06 Thread Tim Golden
davidj411 wrote: import win32com.client computer = server strUser = server\user_name strPassword =my_password objSWbemLocator = win32com.client.Dispatch (WbemScripting.SWbemLocator) objSWbemServices = objSWbemLocator.ConnectServer(computer, root \cimv2,strUser,strPassword) objCreateProc =

Re: WMI remote call in python script to create process on remote windows computer

2009-10-06 Thread Dave Angel
davidj411 wrote: import win32com.client computer = server strUser = server\user_name strPassword =my_password objSWbemLocator = win32com.client.Dispatch (WbemScripting.SWbemLocator) objSWbemServices = objSWbemLocator.ConnectServer(computer, root \cimv2,strUser,strPassword) objCreateProc =