无法远程连接到 Windows 2019 核心

无法远程连接到 Windows 2019 核心

我尝试将文件复制到 Windows Server 2019 核心,参考https://msdn.microsoft.com/en-us/library/mt708806(v=vs.85).aspx。但是我运行命令后: $ip = "192.168.0.100" # 替换为你的 Nano Server 的 IP 地址 $s = New-PSSession -ComputerName $ip -Credential ~\Administrator

我收到以下错误: 在此处输入图片描述

我已经将两台服务器添加到彼此本地文件中的trustedhosts中(Set-Item WSMAN:\localhost\Client\TrustedHosts srvname -force),并且禁用了远程服务器上的防火墙。

我该如何修复此问题?

答案1

此链接将有助于解决 Enter-PSSession (http://jeffgraves.me/2013/10/14/powershell-remoting/)WinRM 拒绝。

针对我们的具体案例,我们做了以下工作:

在本地机器上 winrm quickconfig(尽管已经配置好了)

winrm s winrm/config/client'@{TrustedHosts="myservername.domain"}'

在远程机器上

启用 psremoting -force

设置 PSSessionConfiguration -ShowSecurityDescriptorUI -名称 Microsoft.PowerShell -Force

https://stackoverflow.com/questions/16062033/cannot-create-remote-powershell-session-after-enable-psremoting

相关内容