积极答复者
用户邮箱容量超过限制的问题

问题
答案
-
你好,
根据StorageLimitStatus显示,应该是这些邮箱并未应用默认的数据库限制,一般来说,StorageLimitStatus 此值指示邮箱的配额状态。使用以下值:
- BelowLimit 邮箱大小小于问题警告配额。
- IssueWarning 邮箱大小大于或等于问题警告配额,但小于禁止发送配额。
- ProhibitSend 邮箱大小大于或等于禁止发送配额,但小于禁止发送接收配额。
- MailboxDisabled 邮箱大小大于或等于禁止发送接收配额。
根据你现在的情况,建议你:
1.对已经超过数据库默认限制的邮箱,进行单独限制,防止邮箱容量继续增长;
2.对于那些还未超过数据库默认限制的,但状态是Nochecking的邮箱,一起迁移到一个新数据库中,然后再次应用数据库配额,可以使用下面的指令批量迁移:
Get-Mailbox -ResultSize Unlimited | Get-MailboxStatistics | where {$_.StorageLimitStatus -eq "Nochecking"} |New-moverequest -targetdatabase "新建DB"
谢谢!
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact tnmff@microsoft.com.
Niko Cheng
TechNet Community Support- 已编辑 Niko.ChengModerator 2016年5月3日 0:48
- 已标记为答案 Ian.sP 2016年5月4日 16:32
全部回复
-
你好,
这些用户都在同一个数据库里吗?
建议你运行下面的命令,将结果贴上来:
Get-mailboxdatabase -identity DBName |fl name,prohibit*
Get-mailbox UserName |fl name,UseDatabaseQuotaDefaults,Prohibit*
谢谢!Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact tnmff@microsoft.com.
Niko Cheng
TechNet Community Support -
你好,两个命令执行如下,另外这些超过邮箱限制的用户不在同一个数据库,每个库里都有超过邮箱限制的用户存在。
Name : NIC 05
ProhibitSendReceiveQuota : 5 GB (5,368,709,120 bytes)
ProhibitSendQuota : 4.805 GB (5,158,993,920 bytes)Name : 胡XX
UseDatabaseQuotaDefaults : True
ProhibitSendQuota : unlimited
ProhibitSendReceiveQuota : unlimited -
-
你好,
根据StorageLimitStatus显示,应该是这些邮箱并未应用默认的数据库限制,一般来说,StorageLimitStatus 此值指示邮箱的配额状态。使用以下值:
- BelowLimit 邮箱大小小于问题警告配额。
- IssueWarning 邮箱大小大于或等于问题警告配额,但小于禁止发送配额。
- ProhibitSend 邮箱大小大于或等于禁止发送配额,但小于禁止发送接收配额。
- MailboxDisabled 邮箱大小大于或等于禁止发送接收配额。
根据你现在的情况,建议你:
1.对已经超过数据库默认限制的邮箱,进行单独限制,防止邮箱容量继续增长;
2.对于那些还未超过数据库默认限制的,但状态是Nochecking的邮箱,一起迁移到一个新数据库中,然后再次应用数据库配额,可以使用下面的指令批量迁移:
Get-Mailbox -ResultSize Unlimited | Get-MailboxStatistics | where {$_.StorageLimitStatus -eq "Nochecking"} |New-moverequest -targetdatabase "新建DB"
谢谢!
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact tnmff@microsoft.com.
Niko Cheng
TechNet Community Support- 已编辑 Niko.ChengModerator 2016年5月3日 0:48
- 已标记为答案 Ian.sP 2016年5月4日 16:32