Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Use PowerShell to find Office365&Ex

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

1 、 Get-Mailbox

Office365 get-mailbox-identity temp

2. Now let's pass the above command to Get-MailboxStatistics cmdlet. Type:

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. Export CSV

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 | Export-CSV c:\ temp\ Office365-MailboxSize-Report.csv

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report