Exchange 2010: Write mailbox sizes and limits to CSV file (V2)
In this article, I already described how the mailbox sizes and the send and receive limits can be written to a CSV file. Here is a slightly modified version that converts the values into MB so that they can be better evaluated: "Name;LANID;Database;IssueWarningQuota;SendQuota;SendReceiveQuota;MailboxSize" | set-content "postfaecher.csv" $mbxlist = get-mailbox -resultsize unlimited foreach ($mbx in $mbxlist) { $size ... Read more