无法打开远程交换(2010 和 2013)PSSession 来自其他域 (WinRM) 错误.请指教
本文关键字:其他 WinRM 错误 PSSession 程交换 2010 交换 2013 | 更新日期: 2023-09-27 17:57:18
我正在尝试打开远程交换 PS 会话,但该会话失败并给出 WinRM 错误。
请注意,我能够打开正常的PS会话,但不能使用交换配置。
-
那么,是否可以从启用了PSRemoting的同一域中的任何计算机管理交换服务器?
-
是否可以从来自不同域的计算机管理交换服务器?
-
欢迎任何建议 w.r.t 错误?
以下是我执行的命令:
**Case 1: Failing to open a remote session with exchange configuration.**
PS C:'> $connectionUri="http://{fqdn/powershell?serializationLevel=Full;ExchClientVer=14.3.91.1"
PS C:'> $s = New-PSSession -ConnectionURI $connectionUri -ConfigurationName Microsoft.Exchange
-SessionOption $so -Credential $c
[fqdn] Connecting to remote server failed with the following error message : The WinRM clie
nt cannot process the request. The WinRM client tried to use Negotiate authentication mechanism, but the destination co
mputer (fqdn:80) returned an 'access denied' error. Change the configuration to allow Negot
iate authentication mechanism to be used or specify one of the authentication mechanisms supported by the server. To us
e Kerberos, specify the local computer name as the remote destination. Also verify that the client computer and the des
tination computer are joined to a domain. To use Basic, specify the local computer name as the remote destination, spec
ify Basic authentication and provide user name and password. Possible authentication mechanisms reported by server: For
more information, see the about_Remote_Troubleshooting Help topic.
+ CategoryInfo : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [], PSRemotingTransportExc
eption
+ FullyQualifiedErrorId : PSSessionOpenFailed
Without connectionURL, and with just fqdn:
PS C:'> $s = New-PSSession fqdn -Credential $c -ConfigurationName
Microsoft.Exchange
[fqdn] Connecting to remote server failed with the following error message : The WS-Managem
ent service cannot process the request. The resource URI (__http://schemas.microsoft.com/powershell/Microsoft.Exchange) w
as not found in the WS-Management catalog. The catalog contains the metadata that describes resources, or logical endpo
ints. For more information, see the about_Remote_Troubleshooting Help topic.
+ CategoryInfo : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [], PSRemotingTransportExc
eption
+ FullyQualifiedErrorId : PSSessionOpenFailed
**Case 2: without exchange configuration, i am able to open the PS session.**
PS C:'> $s = New-PSSession "fqdn" -Credential $c
PS C:'> $s
Id Name ComputerName State ConfigurationName Availability
-- ---- ------------ ----- ----------------- ------------
1 Session1 xxxxxxxxxxxx Opened Microsoft.PowerShell Available
问候
梦想家
我不确定您的环境是什么样的,但也许可以尝试这些链接来设置 CAS 以进行远程处理
为互联网上的远程电源外壳设置 CAS:http://www.parative.com/Blogs/Exchange/2010/02/exchange-2010-remote-powershell/
使用 Powershell 远程管理 Exchange 2010:http://www.mikepfeiffer.net/2010/02/managing-exchange-2010-with-remote-powershell/
使用远程 PowerShell 连接到远程 Exchange 2010 组织:http://www.msexchange.org/blogs/walther/news/connecting-to-a-remote-exchange-2010-organization-using-remote-powershell-429.html