Simple protocol for starting / ending a remote process

I am looking for a simple protocol to control remote processes from a single control application. Remote processes will run on Windows and Linux (x86).

Is there a simple protocol for managing remote processes for which I could find daemons that work on both Windows and Linux?

0


source to share


3 answers


I consider ssh the "Swiss army knife" of the remote administration. User script communication via ssh can then control the process. On Windows, I install ssh as part of Cygwin .



+3


source


On windows you can use shutdown.exe \\ remote_name [/ y] [/ c]



http://support.microsoft.com/kb/317371

0


source


Thanks Nathan.

Windows users can also use the following package instead of Cygwin: http://sshwindows.sourceforge.net/

0


source







All Articles