To resolve the issue, please disable Calendar Repairing Assistant on both source and target till the end of your migration.
For Exchange 2010 on per server basis:
Get-MailboxServer | Set-MailboxServer -CalendarRepairWorkCycle $null -CalendarRepairWorkCycleCheckpoint $null -CalendarRepairSchedule $null
and
Get-mailbox -server <mailbox server> -resultsize Unlimited | Set-Mailbox -CalendarRepairDisabled $true
For Exchange 2010 on per mailbox basis:
Set-Mailbox -Identity <mailbox@yourdomain.com> -CalendarRepairDisabled $true
For Exchange 2013 on per server basis:
Get-MailboxServer | Set-MailboxServer -CalendarRepairWorkCycle $null -CalendarRepairWorkCycleCheckpoint $null -CalendarRepairSchedule $null
or
for all mailboxes on Exchange 2013:
Get-Mailbox -ResultSize unlimited -Filter {CalendarRepairDisabled -eq $false} | Set-Mailbox -CalendarRepairDisabled $true
For Exchange 2013 on per mailbox basis:
Set-Mailbox -Identity <mailbox@yourdomain.com> -CalendarRepairDisabled $true
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center