Office 365 Message / Attachment Size Limit

Modified on Mon, 23 Mar at 3:57 PM

Connect to Exchange Online:

Connect-ExchangeOnline

Get list of mailboxes and their size limits:

Get-Mailbox -ResultSize Unlimited | Select-Object DisplayName, UserPrincipalName, MaxSendSize, MaxReceiveSize | Out-GridView


Get organization wide limits:

Get-TransportConfig | Select-Object MaxSendSize, MaxReceiveSize


Get defaults for new mailboxes:

Get-MailboxPlan | Select-Object Name, MaxSendSize, MaxReceiveSize


Update all mailboxes to the maximum size:

Get-Mailbox -ResultSize Unlimited | Set-Mailbox -MaxSendSize 150MB -MaxReceiveSize 150MB


Update all mailbox plans to the maximum size:

Get-MailboxPlan | Set-MailboxPlan -MaxSendSize 150MB -MaxReceiveSize 150MB

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article