使用 Powershell 在非管理员帐户上执行远程进程
我想使用 Powershell 2.0 从远程计算机运行远程进程(更具体地说是 winword.exe)。一项要求是该进程由非管理员用户帐户运行。如果用户是远程计算机上本地管理员组的一部分,我可以运行 winword.exe,但是当我从管理组中删除它时,它会失败 - 我收到 winword.exe 找不到错误(32位 winword在 64 位 2008 服务器上运行)。
我尝试通过授予非管理员用户帐户更高的权限来调整 PSSession 配置,但它仍然失败:
Set-PSSessionConfiguration Microsoft.Powershell -ShowSecurityDescriptorUI
我在这里缺少什么吗?或者用户帐户是否明确需要服务器上的管理员级别权限?虽然 PS 工具是一个不错的选择,但我更喜欢使用 PS。
I want to run aa remote process (winword.exe more specifically) from a remote machine using Powershell 2.0. One requirement is that the process is run by a non-admin user account. I'm able to run winword.exe if the user is part of the local administrator group on the remote machine, however when I remove it from the admin group, it fails - I get a winword.exe cannot be found error (32bit winword running on a 64bit 2008 server).
I've tried adjusting the PSSession configuration by granting the non-admin user account more elevated priveleges but it still fails:
Set-PSSessionConfiguration Microsoft.Powershell -ShowSecurityDescriptorUI
Is there something I'm missing here? Or does the user account explicitly require admin level priveleges on the server? Although PS tools would be a nice alternative, I would prefer using PS.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请查看PowerShell 远程处理管理员指南 来自 PowerShell.com。
Have a look to the "Understanding Session Configurations" paragrph in the Administrator's guide to PowerShell Remoting from PowerShell.com.