是否存在用 Delphi 编写的开源 psexec 克隆?
我想向应用程序添加 psexec 类型功能,但我喜欢在本地 Delphi 中拥有它。最终我的目标是以系统身份远程执行进程,这需要在远程计算机上安装服务。
我熟悉 XCmd 项目,它是用 Visual C++ 编写。如果已经存在该程序/功能的 Delphi 克隆,那就太好了。如果没有,我将努力将 XCmd 项目的逻辑转换为 Delphi。
有谁知道 Delphi 的 psexec 或 xcmd 克隆吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RunAsSys 很接近(但不能远程工作) ),它使您能够将某些内容作为系统运行,我的 RunInSession 工具能够在任何会话中远程启动进程
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