Frequently Asked Question
Disable the New Outlook for your Tenant
Last Updated 2 months ago
Disable the New Outlook for your Tenant
# Connect to Exchange Online first
Connect-ExchangeOnline
# Disable the new Outlook app for all users:
Get-CASMailbox | Set-CASMailbox -OneWinNativeOutlookEnabled $false
# Or for a single user:
Set-CASMailbox -identity joemama@contoso.com -OneWinNativeOutlookEnabled $false
# Verify change - Change to a 1 line entry
Get-CASMailbox | ForEach-Object {
Write-Host "$($_.DisplayName) - OneWinNativeOutlookEnabled: $($_.OneWinNativeOutlookEnabled)"
}