I want to get the TotalItemSize per database on Exchange 2013. I have tried this command to count the mailbox per database but I don't kjown how to get the TotalItemSize per database
Get-Mailbox -ResultSize 10 | Get-MailboxStatistics | select-object DisplayName,database,{$_.TotalItemSize.Value.ToMB()} | Group-Object database
Any idea ?