I need to view mailbox size quotes and add warnings.

Juan Jimenez 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.

Microsoft 365
Microsoft 365
Formerly Office 365, is a line of subscription services offered by Microsoft which adds to and includes the Microsoft Office product line.
4,365 questions
Microsoft Exchange Online
Windows 365 Enterprise
{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 JDoe@contoso.com | Select *quota*
    

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

    Set-Mailbox JDoe@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