ISSUE ===== Unable to move large mailboxes to O365 when TMGISAUAG is acting a a F/W between on-premise Exchange and Exchange Online. ERROR ===== Informational: The request has been temporarily postponed because the mailbox is
Continue ReadingTag: Exchange
Move Mailbox request (New-MoveRequest)
Handy powershell command for moving mailboxes from Exchange 2007 or below to Exchange 2010. Get-MoveRequest | Get-MoveRequestStatistics | fl MailboxIdentity, PercentComplete, TotalMailboxsize, BytesTransferred, BytesTransferredPerMinute, BadItemsEncountered, Message Get-MoveRequestStatistics -Identity “Luke Smith” | fl I would to
Continue ReadingExchange Powershell get all mailboxes with sizes
This is a handy powershell script which can be used to gather organisation mailbox settings, which can then be imported into excel for reporting. Get-Mailbox | get-mailboxstatistics |Ft displayname,itemcount, @{label=”total MB”;expression={$_.TOTALITEMSIZE.Value.ToMB()}} >c:mailbox.txt
Continue Reading