I need to view mailbox size quotes and add warnings.

Juan Quintero 0 Reputation points
2023-07-31T13:16:46.14+00:00

Is there no way to do this via the O365 Admin Portal > Exchange Admin Portal at all?

I would like to find out what the default quotas are and if I can edit them for specific mailboxes.

Exchange Online
Exchange Online
A Microsoft email and calendaring hosted service.
6,188 questions
Windows for business | Windows 365 Enterprise
Microsoft 365 and Office | Install, redeem, activate | For business | Windows
{count} votes

1 answer

Sort by: Most helpful
  1. Ajinkya Ghare 155 Reputation points
    2023-07-31T20:14:44.7266667+00:00

    The mailbox type and the user's subscription license determine the amount of mailbox storage available. Administrators can reduce maximum mailbox sizes per user or globally.

    https://learn.microsoft.com/en-us/office365/servicedescriptions/exchange-online-service-description/exchange-online-limits#mailbox-storage-limits

    To view Quota of mailbox, you can connect to Exchange Online PowerShell and run the below cmdlet

    Get-Mailbox ******@contoso.com | Select *quota*
    

    To Set Quota of mailbox, you can connect to Exchange Online PowerShell and run the below cmdlet

    Set-Mailbox ******@contoso.com -ProhibitSendQuota 19GB -ProhibitSendReceiveQuota 20GB -IssueWarningQuota 18GB
    

    https://learn.microsoft.com/en-us/exchange/troubleshoot/user-and-shared-mailboxes/increase-or-customize-mailbox-size

    Thanks

    Ajinkya Ghare

    If my reply helped, please mark it as helpful, if it fixed your problem, please mark it as the answer

    Follow me on LinkedIn

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.