RE: Execute batch script on remote computer

2006-02-13 Thread Tim Golden
[py] (re running remote processes) | WMI will work, i can create a new Win32_Process. OK, but remember that the process won't interact with the desktop on the remote machine -- which may well be what you want -- and also that the environment will likely be different, unless you're connecting as

Re: Execute batch script on remote computer

2006-02-13 Thread py
WMI will work, i can create a new Win32_Process. XML_RCP would be nice, but probably to much for what i need. thanks. -- http://mail.python.org/mailman/listinfo/python-list

RE: Execute batch script on remote computer

2006-02-13 Thread Tim Golden
[py] | I am trying to execute a batch script on a remote computer. | | The batch script looks like: | | @echo off | start c:\python24\python.exe c:\a_script.py | | | Here's the setup: | Computer A (my computer), Computer B (the remote computer). | | So I map "W:" to Computer B and then copy t

Execute batch script on remote computer

2006-02-13 Thread py
I am trying to execute a batch script on a remote computer. The batch script looks like: @echo off start c:\python24\python.exe c:\a_script.py Here's the setup: Computer A (my computer), Computer B (the remote computer). So I map "W:" to Computer B and then copy the batch script to Computer B.