1. 程式人生 > >Exchange-查看郵箱大小及所在數據庫的存儲配額

Exchange-查看郵箱大小及所在數據庫的存儲配額

exchange查看數據庫存儲配額 查看用戶郵箱使用情況

查看指定用戶郵箱的大小

[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



根據上面獲取到的數據庫,來查看數據庫的存儲配額

[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:\>


圖示:

技術分享

本文出自 “趙東偉的博客” 博客,請務必保留此出處http://zhaodongwei.blog.51cto.com/4233742/1961113

Exchange-查看郵箱大小及所在數據庫的存儲配額