我尝试使用的机器不是加入域的(不会加入),并且希望能够使用 PowerShell 脚本远程重启 VM(pfSense)。
我在尝试测试与服务器的连接时不断收到此错误。
PS C:\WINDOWS\system32> Get-VM –computername 'LAB1' | Where { $_.State –eq 'Running' }
Get-VM : The operation on computer 'LAB1' failed: The WinRM client cannot process the request. If the authentication scheme is different from Kerberos, or if the client computer is not joined to a domain, then HTTPS transport must be used or
the destination machine must be added to the TrustedHosts configuration setting. Use winrm.cmd to configure TrustedHosts. Note that computers in the TrustedHosts list might not be authenticated. You can get more information about that by
running the following command: winrm help config.
我试过这个:
winrm set winrm/config/client '@{TrustedHosts="DESKTOP-K2GD11M"}'
Enable-PSRemoting -Force
但仍然得到错误。
我也检查get-item wsman:\localhost\Client\TrustedHosts
并添加了主机名或计算机名。
从您的域计算机尝试以下操作:(这不使用使用 Powershell Remoting)
其中,用户名是对您的工作组框具有访问权限的帐户,而 LAB1 是工作组框。
您将看到一个对话框,提示您输入 LAB1\Username 的密码
现在,您需要做的是让您的客户端机器(域)信任服务器(工作组)。
你可以使用
或者
在您的台式机上。
然后在测试时,确保您已包含可以访问目标服务器的凭据: