查看指定用户邮箱的大小
1
2
3
4
|
[PS]
F:\>
Get-Mailbox
-Identity xxxxxxx |
Get-MailboxStatistics
| select DisplayName,TotalItemSize,Database
DisplayName TotalItemSize Database
----------- ------------- --------
xxxxxxxxxxxxxxxxxxxxxxxxxxxx 16.64 GB (17,865,934,677 bytes) SGxxxxxx
|
根据上面获取到的数据库,来查看数据库的存储配额
1
2
3
4
5
|
[PS]
F:\>
Get-MailboxDatabase
-Identity SGxxxxxx | select ProhibitSendReceiveQuota,ProhibitSendQuota,IssueWarningQuota
ProhibitSendReceiveQuota ProhibitSendQuota IssueWarningQuota
------------------------ ----------------- -----------------
23 GB (24,693,964,800 bytes) 20 GB (21,474,836,480 bytes) 18.99 GB (20,394,803,200 bytes)
[PS]
F:\>
|
图示:
本文转自cix123 51CTO博客,原文链接:http://blog.51cto.com/zhaodongwei/1961113,如需转载请自行联系原作者