Forum Discussion
Update mailbox quota
- Jan 18, 2018
Here are the instructions - https://support.microsoft.com/en-us/help/2490230/how-to-set-exchange-online-mailbox-sizes-and-limits-in-the-office-365.
This is the command I tested and worked ok -
Set-Mailbox <account> - ProhibitSendQuota 99GB -ProhibitSendReceiveQuota 100GB -IssueWarningQuota 98GB
After running this command on test mailbox with a smaller quota, it was shown as having a 99GB mailbox available.
Here are the instructions - https://support.microsoft.com/en-us/help/2490230/how-to-set-exchange-online-mailbox-sizes-and-limits-in-the-office-365.
This is the command I tested and worked ok -
Set-Mailbox <account> - ProhibitSendQuota 99GB -ProhibitSendReceiveQuota 100GB -IssueWarningQuota 98GB
After running this command on test mailbox with a smaller quota, it was shown as having a 99GB mailbox available.
- TonyRedmondJan 18, 2018MVP
Slightly better code because it focuses only on user mailboxes and only processes mailboxes that need to be:
Get-Mailbox -RecipientTypeDetails UserMailbox | ? {$_.ProhibitSendQuota -lt 90GB } | Set-Mailbox -ProhibitSendQuota 99GB -ProhibitSendReceiveQuota 100GB -IssueWarningQuota 98GB
- Antoine HESKIAJan 18, 2018Brass ContributorNice !
- Antoine HESKIAJan 18, 2018Brass Contributor
Thank you Cian !
I found that doc and issued the cmdlet and it worked !
Now I wonder why is this userid did not get the same quotas as the others... I'm the only admin of our tenant and I never played with quotas... strange ?
- Cian AllnerJan 18, 2018Silver Contributor
Good question! I don't know how old that mailbox is but 50GB was the original quota until the end of 2016 when it got increased to 100GB. If it was around then, maybe it just never got the auto upgraded value for some reason but just guessing really.
- Antoine HESKIAJan 18, 2018Brass ContributorYes Cian, our mailboxes where created in 2011 ! All has been updated excepted this one... really weird !
Anyway, thanks for your support !