如果不在用户级别做配额限制,那默认将遵从数据库级别的配额设置

用户级别:

运维技巧(3):管理邮箱配额限制:重点是powershell命令操作

默认有三个配额选项可以设置,具体每个选项代表什么意思,请仔细阅读下面图片的提示信息

运维技巧(3):管理邮箱配额限制:重点是powershell命令操作

Powershell方式设置单个用户配额限制

 

运维技巧(3):管理邮箱配额限制:重点是powershell命令操作

 

设置
Set-Mailbox -Identity zengchuixin -IssueWarningQuota 20GB -ProhibitSendQuota 21GB -ProhibitSendReceiveQuota 22GB
查看
Get-Mailbox -Identity zengchuixin | fl name,issuewarningquota,prohibitsendquota,prohibitsendreceivequota

powershell方式设置数据库配额限制

设置
Set-MailboxDatabase test -IssueWarningQuota 10GB -ProhibitSendQuota 11GB -ProhibitSendReceiveQuota 12GB
查看
Get-MailboxDatabase -Identity test | fl name,issuewarningquota,prohibitsendquota,prohibitsendreceivequota
 

 

相关文章:

  • 2021-11-29
  • 2021-07-12
  • 2021-05-26
  • 2021-08-21
  • 2021-04-14
  • 2022-12-23
  • 2022-01-02
  • 2022-12-23
猜你喜欢
  • 2022-03-02
  • 2021-12-05
  • 2021-10-15
  • 2022-02-25
  • 2022-02-28
  • 2021-09-13
  • 2021-10-08
相关资源
相似解决方案