Die Focused Inbox in Outlook 2016 erfordert eine moderne Art der Authentifizierung
Outlook 2016 muss via der Funktion Click-2-Run installiert werden.
Die Focused Inbox sieht in Outlook 2016 wie folgt aus:
und so im OWA (Outlook Web Access):
Microsoft Online Login
Set-ExecutionPolicy RemoteSigned $credential = Get-Credential Connect-MsolService -Credential $credential
In Exchange einloggen:
$exchangeSession = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri "https://outlook.office365.com/powershell-liveid/" -Credential $credential -Authentication "Basic" -AllowRedirection Import-PSSession $exchangeSession -DisableNameChecking
Moderne Authentifikation in Exchange Online aktivieren:
Set-OrganizationConfig -OAuth2ClientProfileEnabled $true Get-OrganizationConfig | Format-Table -Auto Name,OAuth*
Views: 286