Psexec“以(远程)管理员身份运行”
我编写了一些使用 PSexe 的 C# 代码。 我希望它在连接到我的 LAN 的计算机上运行远程 exe。
该exe创建一个新的本地用户。 当我在远程计算机上本地运行该 exe 时(右键单击-->“以管理员身份运行”后)-它工作正常。 我不知道如何模拟右键-->从 Psexec 中“以管理员身份运行”。 我尝试过 -l 标志但它不起作用
I wrote some c# code that uses PSexe.
I want it to run a remote exe on a machine connected to my LAN.
That exe creates a new local user.
When I run that exe locally on the remote machine (after right click --> "run as Admin") - it works fine.
I don;t know how to simulate the right click --> "run as Admin" from Psexec.
I have tried the -l flag but it didn't work
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需在使用
-u -p
添加凭据后添加-h
,它将以提升的权限运行。Simply add a
-h
after adding your credentials using a-u -p
, and it will run with elevated privileges.使用 psexec -s
s 开关将导致它在系统帐户下运行,这与运行提升的管理提示符相同。只是用它来远程启用 WinRM。
Use psexec -s
The s switch will cause it to run under system account which is the same as running an elevated admin prompt. just used it to enable WinRM remotely.