如何使用 Powershell“调用表达式”以不同用户身份运行可执行文件

发布于 2024-09-28 15:24:40 字数 155 浏览 1 评论 0原文

我有一个启动 Powershell 脚本 (powershell.exe script.ps1) 的 C++ 服务应用程序。在脚本中运行可执行文件,但需要使用不同的用户凭据运行。有没有办法在 Powershell 中使用 invoke-expression cmdlet 或其他方式来执行此操作?

I have a c++ service application that launches a Powershell script (powershell.exe script.ps1). In the script an executable is run but needs to be run with different user credentials. Is there a way to do this in Powershell with the invoke-expression cmdlet or some other way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

跨年 2024-10-05 15:24:40

尝试 Start-Process 例如:

Start-Process cmd.exe -arg "/k whoami.exe" -Credential (Get-Credential)

当然,对于您的脚本,您需要以编程方式创建凭据,而不是使用提示输入用户名/密码的 Get-Credential

Try Start-Process e.g.:

Start-Process cmd.exe -arg "/k whoami.exe" -Credential (Get-Credential)

Of course, for your script you will need to create a credential programmatically rather then using the Get-Credential which prompts for username/password.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文