Exchange 2019/2016 和 Microsoft 365 中的邮箱大小和配额

要从 Exchange 服务器获取基本用户邮箱统计信息,请使用Get-MailboxStatistics cmdlet。用户名被指定为参数。不带参数运行时,将显示用户名 ( DisplayName)、邮箱中的项目数 ( ItemCount)、邮箱大小限制 ( StorageLimitStatus) 和上次访问邮箱的时间 ( LastLogonTime)。

Get-MailboxStatistics -Identity xueliang.xiao

  查看全部

Get-MailboxStatistics -Identity xueliang.xiao |fl

  

  • IssueWarningQuota — 当用户开始收到关于达到邮箱限制的通知时的邮箱大小
  • ProhibitSendQuota — 禁止发送电子邮件时的邮箱大小
  • ProhibitSendReceiveQuota — 阻止发送和接收电子邮件时的邮箱大小

要更改 Exchange 数据库的配额大小,请使用以下命令:

Set-MailboxDatabase -Identity xueliang.xiao  -IssueWarningQuota 19GB -ProhibitSendQuota 19.5GB -ProhibitSendReceiveQuota 20GB

posted @ 2022-02-07 17:34  XXLLA  阅读(404)  评论(0编辑  收藏  举报