https://cloudblogs.microsoft.com/enterp ... c-preview/
but it will shortly enable this for everyone, forcing all Global Administrators to have MFA turned on. This baseline policy is available under: https://portal.azure.com/#blade/Microso ... e/Policies
As soon as we enabled this policy, Veeam Backup for Microsoft Office 365 broke with the following errors:
Code: Select all
Connecting to remote server outlook.office365.com failed with the following error message : Access is denied.
For more information, see the about_Remote_Troubleshooting Help topic.
Code: Select all
The request failed with HTTP status 401: Unauthorized.
https://docs.microsoft.com/en-us/powers ... xchange-ps
You just need to use the following string:
Code: Select all
Connect-EXOPSSession -UserPrincipalName <UPN>
Code: Select all
$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session
When would Veeam start supporting MFA? Currently we can no longer this product since we are required to use this baseline policy. We also opened a support case #03105881 on this.
Thanks.