Skip to main content
11 Februar, 2024

Das neue Outlook mittels Powershell im Tenant deaktivieren

11 Februar, 2024

„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)"
}
Lukasz
Lukasz
Cloud Engineer

Latest Posts