Move mailbox or restore mailbox fails with error -1056749110
The move mailbox or restore mailbox operation fails with an error -1056749110
Restore-Mailbox : Error was found for RSG, Test because: Error occurred in the step: Moving messages. This mailbox exceeded the maximum number of corrupted items specified for this move mailbox operation., error code: -1056749110
Well, the fix is pretty simple. In this example I have tried to restore a mailbox from RSG to a production mailbox using:
Restore-Mailbox -RSGMailbox “RSG, Test” -RSGDatabase Exch-Guru\RSG_DB\db11 -id “Recovery, Mailbox” -TargetFolder “Recovered Mails of RSG mailbox”
RSG, Test – The mailbox in the RSG database for which items should be recovered
Exch-Guru\RSG_DB\db11 – ServerName\Name of Recovery Storage Group\Name of Mailbox Database
Recovery, Mailbox – Display name of the mailbox to which the backup should be restored to
Recovered Mails of RSG mailbox – A folder in Recovery, Mailbox which will be created automatically into which the mailbox RSG, Test will be restored to.
The reason for this to fail is because of a property BadItemLimit.
You should run the cmdlet with the following switch:
Restore-Mailbox -RSGMailbox “RSG, Test” -RSGDatabase Exch-Guru\RSG_DB\db11 -id “Recovery, Mailbox” -TargetFolder “Recovered Mails of RSG mailbox” –BadItemLimit 1000
The BadItemLimit switch specifies the number of bad items to skip. Use 0 to not skip bad items. The valid input range for this parameter is 0 to 2,147,483,647. In this example 1000 is the number of corrupted items which will be skipped.
Ratish









June 20th, 2010 at 10:48 pm
Thanks for the post. This worked for me.
August 4th, 2011 at 4:11 pm
All I can say is tat you are a life saver. Awesome steps which I could find no where else.
August 31st, 2011 at 10:26 pm
Thank you guru. I’m sure this information is somewhere in the vault at MS, but I couldn’t find it. Wish I had found you 3 hours ago!
July 9th, 2012 at 3:49 am
Thanks for the post. Easy to Find the solution. This worked for me.