Exchange 2010: Write mailbox size and mailbox limits to CSV file
Another script from the Quick-and-Dirty series: To quickly write the mailboxes and the limits at mailbox level to a CSV file, the following script can be used: "Name;IssueWarningQuota;SendQuota;SendReceiveQuota;Size" | add-content "postfaecher.csv" $mbxlist = get-mailbox foreach ($mbx in $mbxlist) { $size = Get-MailboxStatistics $mbx | ForEach-Object {$_.TotalItemSize} | ForEach-Object {$_.Value} $name = $mbx.Name $IW = ... Read more