Setting up Mailbox Storage Quota Warning in exchange online

Anand Malaviya 61 Reputation points
2021-11-23T11:13:41.433+00:00

I want to set a email triggered warning while one of our user's mail box storage reached to 50% or 80 % of space.

I already go through powershell command,
Set-Mailbox -Identity "user name" -IssueWarningQuota 400mb -ProhibitSendQuota 800mb -ProhibitSendReceiveQuota 98gb -UseDatabaseQuotaDefaults $false

but not getting required result.

Exchange Online
Exchange Online
A Microsoft email and calendaring hosted service.
6,188 questions
0 comments No comments
{count} votes

Accepted answer
  1. Vasil Michev 119.8K Reputation points MVP Volunteer Moderator
    2021-11-23T11:57:17.877+00:00

    For starters, you're using "mb" instead of "gb", if this is for Exchange Online the size of the mailbox will be in GB. If the mailbox size is 100GB and you want the warning to be sent at 50% usage, use this:

    Set-Mailbox -Identity "user name" -IssueWarningQuota 50GB -ProhibitSendQuota 80GB -ProhibitSendReceiveQuota 98GB -UseDatabaseQuotaDefaults $false
    

0 additional answers

Sort by: Most helpful

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.