How to execute command on remote windows machine

gaurangnshah at gmail.com gaurangnshah at gmail.com
Tue Sep 3 02:45:38 EDT 2013


Hi alex 

I tried the command you suggested however it is giving me following error. 

ERROR: The RPC server is unavailable.

On Tuesday, 3 September 2013 11:03:17 UTC+5:30, alex23  wrote:
> On 3/09/2013 2:45 PM, gaurangnshah at gmail.com wrote:
> 
> > I have a requirement where i need to kill one process on remote windows machine.
> 
> > Following command just works fine if i have to kill process on local machine
> 
> >
> 
> > os.system('taskkill /f /im processName.exe')
> 
> >
> 
> > However I am not able to figure out how to execute this command on remote windows machine.
> 
> 
> 
> The simplest way is from your local machine. taskkill accepts a /s 
> 
> parameter which can specify a remote machine by IP or name.
> 
> 
> 
> http://technet.microsoft.com/en-us/library/bb491009.aspx



On Tuesday, 3 September 2013 11:03:17 UTC+5:30, alex23  wrote:
> On 3/09/2013 2:45 PM, gaurangnshah at gmail.com wrote:
> 
> > I have a requirement where i need to kill one process on remote windows machine.
> 
> > Following command just works fine if i have to kill process on local machine
> 
> >
> 
> > os.system('taskkill /f /im processName.exe')
> 
> >
> 
> > However I am not able to figure out how to execute this command on remote windows machine.
> 
> 
> 
> The simplest way is from your local machine. taskkill accepts a /s 
> 
> parameter which can specify a remote machine by IP or name.
> 
> 
> 
> http://technet.microsoft.com/en-us/library/bb491009.aspx



More information about the Python-list mailing list