March 11, 2011Published by jeremy.whittaker at March 11, 2011No more exmerge in Exchange 2010, using mailbox import exportFirst you have to give permissions to the account that needs to import/export or nothing will work. Where “MyExportAccount” is the account that needs permissions to […]
March 2, 2011Published by jeremy.whittaker at March 2, 2011Get the ten biggest mailboxes in Exchange 2010 export to report using PowerShellGet-Mailbox -database | Get-MailboxStatistics | Sort-Object TotalItemSize -descending |Select-Object DisplayName,ItemCount,@{name=”MailboxSize”;exp={$_.totalitemsize}} -first 10 | Convertto-Html | out-File report.htm