0

到目前为止,我在 windows powershell 中输入了命令:net start WinRM

现在当我尝试使用命令时: Set-Item WSMan:\localhost\Client\TrustedHosts -Value "minwinpc"

我收到以下错误消息:

  • Set-Item:访问被拒绝。
  • 在行:1 字符:9

    • 设置项 <<<< WSMan:\localhost\Client\TrustedHosts -Value minwinpc

    • CategoryInfo : NotSpecified: (:) [Set-Item], InvalidOperationException

    • FullyQualifiedErrorId : System.InvalidOperationException,Microsoft.PowerShell.Commands.SetItemCommand

对不起,其他人已经发布了类似的问题,例如 为什么“Set-Item”在 Windows 7 PowerShell 上不起作用?

但我的错误是:“char:9”不是“char:54”

我不太懂编码,但我擅长遵循指示!拜托,我需要一些帮助,谢谢!

4

1 回答 1

0

为了解决您的问题(“拒绝访问”),您似乎没有以管理权限启动 PowerShell,并且可能还需要运行Set-WSManQuickConfig

请参阅此处以了解听起来相同的问题:

http://powershell.com/cs/blogs/tips/archive/2009/11/23/configuring-wsman-remotely-for-multiple-computers.aspx

(从这个页面)

“如果由于访问被拒绝错误而根本无法运行命令,则应确保以完全管理权限运行 PowerShell并事先运行Set-WSManQuickConfig 。”

于 2016-03-25T19:28:55.857 回答