使用PowerShell查找Office365&Exchange2013-16的邮箱大小
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用PowerShell查找Office365&Exchange2013-16的邮箱大小相关的知识,希望对你有一定的参考价值。
1、Get-Mailboxoffice365 get-mailbox -identity temp
2、现在让我们将上面的命令传递给Get-MailboxStatistics cmdlet。类型:
Get-Mailbox -Identity username | GET-MailboxStatistics
3、Get-Help Get-MailboxStatistics
4、Get-Mailbox -Identity username | Get-MailboxStatistics | fl
5、Get-Mailbox -Identity Temp | Get-MailboxStatistics | Format-Table DisplayName, TotalItemSize, ItemCount -Autosize
6、Get-Mailbox | Get-MailboxStatistics | Format-Table DisplayName, TotalItemSize, ItemCount -Autosize
7、Get-Mailbox | Get-MailboxStatistics | Select DisplayName, TotalItemSize, ItemCount | Sort ItemCount -Descending
8、Get-Mailbox -Identity Temp | Get-MailboxStatistics | Format-Table DisplayName, @name=”TotalItemSize (GB)”;expression=[math]::Round((($_.TotalItemSize.Value.ToString()).Split(“(“)[1].Split(” “)[0].Replace(“,”,””)/1GB),2),ItemCount
9、
Get-Mailbox | Get-MailboxStatistics | Select-Object DisplayName, @name=”TotalItemSize (GB)”;expression=[math]::Round((($_.TotalItemSize.Value.ToString()).Split(“(“)[1].Split(” “)[0].Replace(“,”,””)/1GB),2),ItemCount | Sort “TotalItemSize (GB)” -Descending
10、导出CSVGet-Mailbox | Get-MailboxStatistics | Select-Object DisplayName, @name="TotalItemSize (GB)";expression=[math]::Round((($_.TotalItemSize.Value.ToString()).Split(“(“)[1].Split(” “)[0].Replace(“,”,””)/1GB),2),ItemCount | Sort “TotalItemSize (GB)” -Descending | Export-CSV c:\temp\Office365-MailboxSize-Report.csv
以上是关于使用PowerShell查找Office365&Exchange2013-16的邮箱大小的主要内容,如果未能解决你的问题,请参考以下文章
powershell 批量获取office365用户邮箱使用容量
Office 365 如何使用powershell查询邮件追踪
powershell [Manipulandousuários通过PowerShell执行Office 365] Comandos para manipular o Office 365.