How to configure storage quotas for a mailbox in Office 365?
+
The size limit of an Exchange Online mailbox depends on your Microsoft 365 plan. By default, the mailbox limits in Microsoft 365 include a warning limit of 98% of the mailbox capacity, a send limit of 99% of the mailbox capacity, and a send/receive limit of 100% of the mailbox capacity.
Admins can configure and adjust the storage quota settings for user mailboxes to ensure sufficient storage capacity is allocated.
The Exchange admin center (EAC) cannot configure storage quotas, even though it is mentioned in Microsoft's support documentation that the EAC can be used to do the operation
However, if you are an Exchange Online admin who needs to configure storage quotas, We recommend you use PowerShell to configure storage quotas.
- Connect to your Exchange Online module using the required cmdlets.
- How to set the issue warning quota for a mailbox?
To set the Issue warning quota, use the below cmdlet
Set-Mailbox -Identity <identity> -IssueWarningQuota <value>
- How to set the ProhibitSendQuota for a mailbox?
To set the prohibit send quota, use the below cmdlet
Set-Mailbox -Identity <identity> -ProhibitSendQuota <value>
- How to set the ProhibitSendReceiveQuota for a mailbox?
To set the prohibit send receive quota, use the below cmdlet
Set-Mailbox -Identity <identity> -ProhibitSendReceiveQuota <value>
- How to check the Office 365 mailbox size limit in PowerShell?
To get the mailbox size and quota using PowerShell
Get-Mailbox <Identity> | Format-List IssueWarningQuota, ProhibitSendQuota, ProhibitSendReceiveQuota
*Replace <Identity> with the name, email address or alias of the mailbox. And set value for IssueWarningQuota, ProhibitSendQuota and ProhibitSendReceiveQuota. The value range for any of the storage quota settings is from 0 through 2047 gigabytes (GB).
You may also combine the parameters in a single cmdlet and execute.
By using AdminDroid’s Schedule Reports, administrators can proactively monitor and manage user mailbox quotas effectively.
- Navigate to Schedule Reports in your AdminDroid portal.
- Search and select the Mailbox Quota report from the reports.
- Set the frequency for the schedule and add recipients to get the reports emailed.
The Mailbox Quota report is now set to receive regular updates based on frequency, providing the latest information on users' mailbox quotas.