我正在尝试使用New-PSSession
连接到localhost。
我有
使用
配置WinRMwinrm quickconfig
启用PS Remoting
Enable-PSRemoting
添加了可信主机
Set-Item WSMan:\localhost\Client\TrustedHosts * -Force
防火墙上的8173端口有入站规则。
winrm
的输出:
PS C:\> winrm get winrm/config/listener?Address=*+Transport=HTTP
Listener
Address = *
Transport = HTTP
Port = 8173
Hostname
Enabled = true
URLPrefix = wsman
CertificateThumbprint
Listening on = 127.0.0.1
我正在尝试运行以下命令:
New-PSSession -ConnectionUri http://localhost:8173/WSMAN
但是我收到了这个错误:
[localhost] Processing data from remote server failed with the following error message:
Error with error code 14 occurred while calling method WSManPluginReceiveResult. For
more information, see the about_Remote_Troubleshooting Help topic.
+ CategoryInfo : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [], PSRemotingTransportException
+ FullyQualifiedErrorId : PSSessionOpenFailed
编辑:
我看到的唯一额外的事情是网络连接到公共
$ listenerport =“8173”
winrmwinrm创建winrm / config / Listener?地址= * +传输= HTTP“@
{端口=
”$ listenerport "
}“
C:\>winrm get winrm/config
Config
MaxEnvelopeSizekb = 1039440
MaxTimeoutms = 60000
MaxBatchItems = 32000
MaxProviderRequests = 4294967295
Client
NetworkDelayms = 5000
URLPrefix = wsman
AllowUnencrypted = true
Auth
Basic = true
Digest = true
Kerberos = true
Negotiate = true
Certificate = true
CredSSP = false
DefaultPorts
HTTP = 8173
HTTPS = 5986
TrustedHosts = *
Service
RootSDDL = O:NSG:BAD:P(A;;GA;;;BA)(A;;GA;;;S-1-5-21-2458768215-3945602940-3262220185-1045)S:P(AU;FA;GA;;;WD)(AU;SA;GWGX;;;WD)
MaxConcurrentOperations = 4294967295
MaxConcurrentOperationsPerUser = 500
EnumerationTimeoutms = 60000
MaxConnections = 25
MaxPacketRetrievalTimeSeconds = 120
AllowUnencrypted = true
Auth
Basic = true
Kerberos = false
Negotiate = true
Certificate = true
CredSSP = false
CbtHardeningLevel = Relaxed
DefaultPorts
HTTP = 5985
HTTPS = 5986
IPv4Filter = *
IPv6Filter = *
EnableCompatibilityHttpListener = false
EnableCompatibilityHttpsListener = false
CertificateThumbprint
Winrs
AllowRemoteShellAccess = true
IdleTimeout = 180000
MaxConcurrentUsers = 5
MaxShellRunTime = 2147483647
MaxProcessesPerShell = 15
MaxMemoryPerShellMB = 150
MaxShellsPerUser = 5
PS C:\> Get-PSSessionConfiguration microsoft.powershell | fl *
xmlns : http://schemas.microsoft.com/wbem/wsman/1/config/PluginConfiguration
Name : Microsoft.PowerShell
Filename : %windir%\system32\pwrshplugin.dll
SDKVersion : 1
XmlRenderingType : text
lang : en-US
PSVersion : 2.0
ResourceUri : http://schemas.microsoft.com/powershell/Microsoft.PowerShell
SupportsOptions : true
ExactMatch : true
Capability : {Shell}
Permission :
Administrators group have permission as I see in the window popup (Set-PSSessionConfiguration -Name Microsoft.PowerShell -showSecurityDescriptorUI)
编辑2:
答案 0 :(得分:3)
通过消除过程,我们可以排除防火墙问题,因为您只连接到环回地址(127.0.0.1)。我们也可以排除看起来很好的WinRM配置。
错误消息表明与http://localhost:8173/WSMAN
的TCP连接实际上已成功,但在建立PS会话时发生故障。
这指向Microsoft.PowerShell会话配置。
看起来您在查看
时看到的权限存在差异Set-PSSessionConfiguration -Name Microsoft.PowerShell -showSecurityDescriptorUI
以及实际分配给Microsoft.PowerShell的权限。
的输出Get-PSSessionConfiguration microsoft.powershell | fl *
应该列出“SecurityDescriptorSddl”和“Permission”礼节。像这样:
Name : microsoft.powershell
Filename : %windir%\system32\pwrshplugin.dll
SDKVersion : 1
XmlRenderingType : text
lang : en-US
PSVersion : 2.0
ResourceUri : http://schemas.microsoft.com/powershell/microsoft.powershell
SupportsOptions : true
Capability : {Shell}
xmlns : http://schemas.microsoft.com/wbem/wsman/1/config/PluginConfiguration
Uri : http://schemas.microsoft.com/powershell/microsoft.powershell
ExactMatch : true
SecurityDescriptorSddl : O:NSG:BAD:P(A;;GA;;;BA)S:P(AU;FA;GA;;;WD)(AU;SA;GXGW;;;WD)
Permission : BUILTIN\Administrators AccessAllowed
尝试删除并重新分配这些权限。
修改强>
根据您提供的信息,这不是主要问题。我还注意到在WinRM服务设置中有一个非标准的“RootSDDL”。
RootSDDL = O:NSG:BAD:P(A;;GA;;;BA)S:P(AU;FA;GA;;;S-1-5-21-2458768215-3945602940-3262220185-1045)(AU;SA;GWGX;;;WD)
默认情况下应为
RootSDDL = O:NSG:BAD:P(A;;GA;;;BA)S:P(AU;FA;GA;;;WD)(AU;SA;GWGX;;;WD)
我已经在测试VM上重新创建了它,Remoting仍然有效。所以我再看看你的WinRM配置......
解决方案
你的问题就在这一行
MaxEnvelopeSizekb = 1039440
通过设置此值,我可以复制您遇到的问题。我建议将其设置为更合理或默认的内容。
winrm set winrm/config '@{MaxEnvelopeSizekb="150"}'
将解决您的问题。
答案 1 :(得分:0)
在"严格" IPV4环境,我们也有同样的问题。
原因是:WinRM(和其他服务)似乎使用IpV6-Loopback-Address,即使ipv6在所有地方都被禁用。 (这不是问题,除了WinRM)
因此,如果IPV6-Loopback Adress没有WinRM-Listener,即使WinRM正在从远程主机工作,也无法连接到localhost。
答案 2 :(得分:0)
在我从win 10 1607到1708升级到计算机后,为我设置了以下工作
更新将以下reg键更改为1,并将其设置为0为我工作
{{1}}