I need to run an application or service on a remote computer. I have had success with psexec from SysInternals, but I am investigating and would like to compre alternatives. Ultimately the command will be run from within a Delphi application. Thanks, Pieter.
|
2
|
|
|
|
|
|
If you want to follow the PSexec-like route, here is an example (with C++) source, called XCmd. Or you can download the updated XCmd project (now called 'The Grim Linker') from SourceForge. Essentially, it extracts a service at run-time, copies it to the remote system, installs it as a service, then connects to it (via named Pipes). The other option is to use WMI's built-in remote execution abilities. Here is an example in VBScript that you could convert to Delphi. The example below executes notepad on the remote system.
|
|||
|
|
|
|
The other possiblity would be to use the windows AT command which schedules tasks via the windows scheduler. You can submit jobs remotely with the command as long as you have administrator access and the schedule service is running on the other machine. To examine the syntax, just open a CMD window and type AT /?. for example to run something on machine named "server" at 4am, just enter the command
|
||
|
|
|
|
ssh is a good choice if you will be streaming anything sensitive. There are even a few FOSS sshd servers for windows that do not rely on cygwin. |
||
|
|
