我尝试使用webjobs运行以下powershell脚本,但收到错误。本地运行工作就好了。
$Session = New-PSSession -ConfigurationName Microsoft.Exchange `
-ConnectionUri https://outlook.office365.com/powershell-liveid/ `
-Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session
webjob运行详细信息的输出是:
ERR] New-PSSession:[outlook.office365.com]连接到远程服务器 outlook.office365.com失败,出现以下错误消息:WS-Management 无法处理请求。由于HTTP错误,操作失败。该 HTTP错误(50)是:不支持请求。 。有关更多信息,请参阅 about_Remote_Troubleshooting帮助主题。
+ $ Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri ht ...... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~ + CategoryInfo:OpenError:(System.Manageme .... RemoteRunspace:RemoteRunspace)[New-PSSession],PSRemotingTransportException + FullyQualifiedErrorId:WinRMOperationAborted,PSSessionOpenFailed
是否可以从azurewebsites webjob连接到远程Exchange在线服务器,并且"做某事"有?