Link to home
Start Free TrialLog in
Avatar of SchoolNet
SchoolNet

asked on

exchange migration 2010 to 2013 maibox move failed

I have just performed an Exchange 2010 to 2013 migration. I have to move 31 mailboxes to the new server, 29 boxes moved over successfully. Two mailboxes failed. When I tried to move them over individually the migration status window states completed but the mailboxes don't move
ASKER CERTIFIED SOLUTION
Avatar of M A
M A
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
If it's only 2 mailboxes and if they aren't that big then might be best just to export to pst, remove the mailbox from Exchange server 2010 and create a new one on Exchange server 2013 and import.  

Powershell cmdlets to export Exchange mailbox to PST, get detailed here.

Powershell cmdlets to import PST file to Exchange 2013 Mailbox, get detailed here.

As a workaround, check If there were any old move requests on the Exchange server, If so Remove the move requests.

Run these Exchange Management Shell commands:

Get-moverequest -identity 'mailbox name'   

Open in new window


This will show a failed status for this mailbox.

Remove-moverequest -identity 'mailbox name'  

Open in new window


To clears out the move migration for this mailbox

New-moverequest -identity 'mailbox name' -baditemlimit '100' -targetdatabase 'Mailbox Database name' 

Open in new window


Runs the move via command line instead of via EAC

I hope the deleting migration batch fixed the issue.