5

I'd like to add psexec type functionality to an application, but I'd like to have it in native Delphi. Ultimately my goal is to remotely execute a process as SYSTEM, which will require installing a service on the remote machine.

I'm familiar with the XCmd project, which is written in Visual C++. If there already exists a Delphi clone of this program/functionality that would be great. If not, I'll work to convert the XCmd project's logic to Delphi.

Does anyone know of a psexec or xcmd clone for Delphi?

Mick
  • 13,248
  • 9
  • 69
  • 119

1 Answers1

3

RunAsSys comes close (doesn't work remotely though), it enables you to run something as system, my RunInSession tool has the ability to start a process in any session and remotely

Remko
  • 7,214
  • 2
  • 32
  • 52