获取邮箱大小为用户的服务器、 邮件存储区、 大小转换为 MB 和 GB
PowerShell
#get all the servers
get-mailboxserver MailServer* |
#get all the mail boxes
Get-Mailbox -ResultSize Unlimited |
#get mail box stat
Get-MailboxStatistics |
#select ones that are over 500MB
Where {$_.TotalItemSize -gt 500MB} |
#Select objects, create a convert to MB, create a convert to GB
Select-Object DisplayName, ItemCount, TotalItemSize, TotalDeletedItemSize, @{label=”Total Size (MB)”;expression={$_.TotalItemSize.Value.ToMB()}}, @{label=”Total Size (GB)”;expression={$_.TotalItemSize.Value.ToGB()}}, StorageLimitStatus, Database
#Select File to export to…
| Export-Csv All_users_mailbox_size.csv
Latest posts by Exchange中文站 (see all)
- 微软将推出卫星解决方案:可连接到 Azure 云服务 - 2020年9月17日
- Windows Terminal 1.0正式发布 - 2020年5月25日
- Azure Lighthouse 相关介绍 - 2020年3月2日
发布于:
浏览:4110 次
还没有评论