0

我想在多台远程机器上安装应用程序。

invoke-command -computer 10.13.14.10 -scriptblock {\\publicshare\software.msi /quiet}

我正在以我的用户权限登录的本地计算机上运行此命令,似乎我必须以更高权限的用户(域管理员)身份执行此命令。我怎么做?

错误 -[10.13.14.10] Connecting to remote server failed with the following error message : The WinRM client cannot process the request. Default authentication may be used with an IP address under the following conditions: the transport is HTTPS or the destination is in the TrustedHosts list, and explicit creden tials are provided. Use winrm.cmd to configure TrustedHosts. Note that computers in the TrustedHosts list might not be authenticated. For more informatio n on how to set TrustedHosts run the following command: winrm help config. For more information, see the about_Remote_Troubleshooting Help topic. + CategoryInfo : OpenError: (:) [], PSRemotingTransportException + FullyQualifiedErrorId : PSSessionStateBroken

4

2 回答 2

0

看起来就像错误所说的那样,您的用户需要被信任(存在于 10.13.14.10 的 TrustedHost 列表中)才能进行委派。请参阅以下链接以获取更多信息。

您甚至可以查看winrm help config命令以对此有更多了解。

于 2013-02-15T07:18:30.063 回答
0

要与其他用户一起执行此命令,只需使用凭据开关。所以运行你的命令如下:

invoke-command -computer 10.13.14.10 -scriptblock {\\publicshare\software.msi /quiet} -Credential $(Get-Credential)

这将为您提供用户/密码提示,您可以输入有权访问的用户的详细信息。

WinRM本身也可能有问题,你确定你已经在远程机器上正确配置了吗?运行winrm quickconfig以确保它已被配置。

于 2013-02-13T16:34:13.427 回答