HI,
我正在尝试使用powershell和以下命令连接到live @ edu。
命令被解雇:
$ SessionNew = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://pod51002psh.outlook.com/powershell
错误:
[pod51002psh.outlook.com]连接到远程服务器失败,并显示以下错误消息:WinRM客户端无法 处理请求。目标计算机返回对请求的空响应。有关更多信息,请参阅 about_Remote_Troubleshooting帮助主题。 + CategoryInfo:OpenError:(System.Manageme .... RemoteRunspace:RemoteRunspace)[],PSRemotingTransportExc 主器件接收 + FullyQualifiedErrorId:PSSessionOpenFailed
任何人都可以建议我如何处理此类错误。
我正在使用以下系统环境。 Win 7,PowerShell&的默认版本IIS功能已启用。
提前致谢.....
答案 0 :(得分:0)
此代码是否有效?
$Uri = "https://pod51002psh.outlook.com/powershell/"
$Credentials = Get-Credential
$SessionNew = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri $Uri -Credential $Credentials -Authentication Basic –AllowRedirection
Import-PSSession $SessionNew
答案 1 :(得分:0)
要使“Import-PSSession”完成,您必须使用以下命令更改本地执行策略:
Set-ExecutionPolicy remotesigned