我想通过power
shell连接到Office 365,这是一个非常简单的任务.但显然不适合我.
我想我错过了一个简单而重要的琐事.
一些信息:
>许可证是Office 365 Buisness Essential
> Azure AD正在运行
>我可以将powershell远程处理(WinRM)与其他服务器一起使用
>我使用管理员帐户
>我使用我的域并尝试了onmicrosoft.com域
>配置双因素身份验证(附加安全验证)
我尝试了以下内容
PS C:\>Import-Module MSOnline PS C:\>$msolcred = get-credential PS C:\>connect-msolservice -credential $msolcred connect-msolservice : The user name or password is incorrect. Verify your user name,and then type your password again.
和
PS C:\> $O365Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $msolcred -Authentication Basic -AllowRedirection New-PSSession : [ps.outlook.com] Connecting to remote server ps.outlook.com Failed with the following error message : Access is denied. For more information,see the about_Remote_Troubleshooting Help topic.
我使用了不同的连接uri
PS C:\> $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $msolcred2 -Authentication Basic -AllowRedirection New-PSSession : [outlook.office365.com] Connecting to remote server outlook.office365.com Failed with the following error message : [ClientAccessServer=VI1PR05CA0019,BackEndServer=,RequestId=5d73dec9-b3ee-4e71-9ddd-bdaac8f79998,TimeStamp=3/7/2015 8:17:50 AM] [FailureCategory=LiveID-InvalidCreds] Access Denied For more information,see the
非常感谢帮助!
它看起来不像PowerShell for O365支持双因素身份验证.
原文链接:https://www.f2er.com/windows/369060.htmlhttp://community.office365.com/en-us/f/148/t/222763.aspx
“如果管理员帐户启用了多重身份验证,则当PowerShell使用此管理员帐户连接到PowerShell时,PowerShell将无法正常工作.请确保使用强密码创建服务帐户以运行PowerShell脚本,并且不要为多重因素启用该帐户身份验证“.