繁体   English   中英

ASP.Net Core 2-Powershell远程处理仅在IIS Express中有效(Kestrel无法正常工作)

[英]ASP.Net core 2 - powershell remoting works only in IIS Express (Kestrel not working)

我正在尝试将Powershell会话从ASP.Net Core 2应用程序(以.NET Framework 4.6.2作为平台)连接到Exchange服务器。 使用IIS Express(Visual Studio中的调试)时,代码可以完美工作,但是使用Kestrel却没有运气。

交易所设置正确。 我可以使用Powershell或IIS Express使用以下代码成功连接。

创建Powershell连接:

var psOptions = new PSSessionOption()
{
    SkipCACheck = true,
    SkipCNCheck = true,
    SkipRevocationCheck = true
};
WSManConnectionInfo connectionInfo = new WSManConnectionInfo(new Uri("https://" + _server + "/powershell?serializationLevel=Full"),
    "http://schemas.microsoft.com/powershell/Microsoft.Exchange", credentials);
connectionInfo.AuthenticationMechanism = AuthenticationMechanism.Basic;
connectionInfo.SetSessionOptions(psOptions);
_runspace = RunspaceFactory.CreateRunspace(connectionInfo);

_runspace.Open();

错误:

Hosting environment: Production
Content root path: path
Now listening on: http://127.0.0.1:12006
Application started. Press Ctrl+C to shut down.
fail: Microsoft.AspNetCore.Server.Kestrel[13]
      Connection id "0HLOGQUBGFLJ1", Request id "0HLOGQUBGFLJ1:00000001": An unhandled exception was thrown by the application.
System.Management.Automation.Remoting.PSRemotingTransportException: Connecting to remote server hostname failed with the following error message : The WinRM client sent a request to an HTTP server and got a response saying the requested HTTP URL was not available. This is usually returned by a HTTP server that does not support the WS-Management protocol. For more information, see the about_Remote_Troubleshooting Help topic.
   at System.Management.Automation.Runspaces.AsyncResult.EndInvoke()

Exchange方面存在问题。 WinRM HTTPS侦听器丢失。 您可以使用winrm e winrm/config/listener命令检查winrm e winrm/config/listener

PS C:\WINDOWS\system32> winrm e winrm/config/listener
Listener
    Address = *
    Transport = HTTP
    Port = 5985
    Hostname
    Enabled = true
    URLPrefix = wsman
    CertificateThumbprint
    ListeningOn = <hidden>



Listener
    Address = *
    Transport = HTTPS
    Port = 5986
    Hostname = <hidden>
    Enabled = true
    URLPrefix = wsman
    CertificateThumbprint = <hidden>
    ListeningOn = <hidden>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM