It is time to migrate last Exchange 2010 servers as they are going end of support soon …
As I am doing this migrations I just wanted to put some Powershell cmdlets into this blog post that can be useful when doing it.
If you want to speed up things a bit:
New-MoveRequest -Identity “xxx@xxx.si” -TargetDatabase “DBEX1601” -Priority Emergency
If you want to check status of your requests:
Get-MoveRequest
If you want to remove completed move requests you can do:
Get-MoveRequest -MoveStatus Completed | Remove-MoveRequest
If you want to get more information about the moves you can try:
Get-MoveRequest | Get-MoveRequestStatistics | Sort-Object PercentComplete -Descending