Exchange-Online-PowerShell-Recipes

Get Mailboxes With Auto-Expanding Archive Enabled

Problem

You want to know which mailboxes have auto-expanding archive enabled.

Solution

Get-Mailbox -ResultSize Unlimited |
Where-Object {$_.AutoExpandingArchiveEnabled -eq $true} |
Select-Object DisplayName, PrimarySmtpAddress