Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does an open-source psexec clone written in Delphi exist?

Tags:

delphi

psexec

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?

like image 392
Mick Avatar asked Oct 25 '22 23:10

Mick


1 Answers

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

like image 98
Remko Avatar answered Oct 30 '22 20:10

Remko