1. 程式人生 > >Exchange server powershell cmdlet查看前40名郵箱用戶的命令

Exchange server powershell cmdlet查看前40名郵箱用戶的命令

powerhsell exchange

其實我覺得這個方法很多的,我只說其中的一種,至於為什麽這麽寫,無所謂。

[PS] C:\Windows\system32>Get-Mailbox -ResultSize Unlimited | Get-MailboxStatistics | Sort-Object TotalItemSize -Descendi
ng | Select-Object DisplayName,TotalItemSize -First 40

願意參考這個命令的,可以去這裏看看:
https://docs.microsoft.com/en-us/powershell/module/exchange/mailboxes/get-mailboxstatistics?view=exchange-ps

powershell命令用起來就是很靈活的,這是一門腳本語言,就是感覺微軟做的這個Shell比Linux下好多了,有統一的規範。原來我計劃錄一個100集左右的Powershell視頻,但是看到國內很少有人用這些東西。還是算了。

做管理的,要想顯得比別人專業點,還是用Shell進行批量管理比較好,效率會大大提升。

Exchange server powershell cmdlet查看前40名郵箱用戶的命令