2013年8月25日 星期日

Exchange 取得信箱大小排序並匯出

Exchange 取得信箱大小排序並匯出

Get-Mailbox -Server xxxx -ResultSize Unlimited | Get-MailboxStatistics | where {$_.StorageLimitStatus -ne "BelowLimit"} | Select DisplayName,LastLoggedOnUserAccount,StorageLimitStatus,@{name="TotalItemSize (MB)";expression={[math]::Round(($_.TotalItemSize.Split("(")[1].Split(" ")[0].Replace(",","")/1MB),2)}},@{name="TotalDeletedItemSize (MB)";expression={[math]::Round(($_.TotalDeletedItemSize.Split("(")[1].Split(" ")[0].Replace(",","")/1MB),2)}},ItemCount,DeletedItemCount | Sort "TotalItemSize (MB)" -Descending | Export-CSV -Encoding Unicode "C:\TEST\Exceeded Quotas.csv" -NoTypeInformation

沒有留言:

張貼留言