0

I'm looking for a simple protocol to control remote processes from one managing application. The 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 run on both Windows and Linux?

kshahar
  • 10,423
  • 9
  • 49
  • 73

3 Answers3

3

I consider ssh to be the "Swiss-army knife" of remote administration. A custom script communicating over ssh can then do the process management. On Windows, I install ssh as part of Cygwin.

Nathan
  • 656
  • 4
  • 7
0

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

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

abatishchev
  • 98,240
  • 88
  • 296
  • 433
0

Thanks Nathan.

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

kshahar
  • 10,423
  • 9
  • 49
  • 73