Forum Discussion
Navishkar Sadheo
Jun 03, 2020Iron Contributor
Check when mailboxes were moved to Office 365
Hi All Hope everyone is well and keeping safe. I wondering if there is a way to check when mailboxes were moved to Office 365 from an on-premise Exchange environment? Appreciate any advice.
- Jun 03, 2020
Hi, try connecting to Exchange Online PowerShell and then running the following command;
Get-MailboxStatistics -Identity username@domain.com -IncludeMoveHistory | Format-List
manuphilip
Jun 03, 2020MCT
Hi, Please check this cmdlet too: Get-MoveRequest | Group-Object -Property:Status | Select-Object Name,Count | Format-Table -Auto Thanks, Manu