Forum Discussion
BurkhardDewitz
Nov 25, 2020Copper Contributor
Skipped Items not listed in reports from IMAP batch migration
Dear Community, We recently started some IMAP batch migration within the Exchange Admin center. These batched synced successfully. However skipped in most cases several items. We would like to...
jk_askus
Jan 15, 2021Copper Contributor
BurkhardDewitz You want to see a list of SkippedItems as it is displayed in the GUI (using details of the migrationbatch => (migrationusers) => List of skipped items?
You were correct: Get-MigrationUser | get-migrationuserstatistics | fl skippeditemcount, skippeditems
but you forgot to use the switch -IncludeSkippedItems that the skippeditems are being retrieved from Exchange. Try:
Get-MigrationUser | get-migrationuserstatistics -includeskippeditems | fl skippeditemcount, skippeditems
... let me know if it worked 😉