Skip to main content

Das neue Outlook mittels Powershell im Tenant deaktivieren

„New Outlook“ für alle Benutzer im Microsoft 365 Tenant deaktivieren Connect-ExchangeOnline Get-CASMailbox | Set-CASMailbox -OneWinNativeOutlookEnabled $false „New Outlook“ für einzelne Benutzer im Microsoft 365 Tenant deaktivieren Connect-ExchangeOnline Set-CASMailbox -identity johndoe@contoso.com -OneWinNativeOutlookEnabled $false Änderungen bestätigen Get-CASMailbox | ForEach-Object { Write-Host "$($_.DisplayName) - OneWinNativeOutlookEnabled: $($_.OneWinNativeOutlookEnabled)" }

Weiterlesen