Link to home
Start Free TrialLog in
Avatar of Jorge Ocampo
Jorge OcampoFlag for United States of America

asked on

Get-MoveRequest

Get-MoveRequest -include report


i dont know how to finish this command i want to view the report of the items that were skipped during my migration from onprem to cloud.

the report does not show me the file.
Avatar of becraig
becraig
Flag of United States of America image

If I am reading you correctly you want to view any incomplete moves:
Get-MoveRequest | where {$_.status -ne ”Completed”} | Get-MoveRequestStatistics

Open in new window

Avatar of Jorge Ocampo

ASKER

no, i want to read the skip items of a move that completed
It is safe to assume any item not complete is either skipped or in progress:
$_.status -ne ”Completed”
yes but i want to know what items where skipped during the migration since i have to tell the user
The simply use the migration users report:
http://technet.microsoft.com/en-us/library/jj898491%28v=exchg.150%29.aspx

Items skipped will show skipped items:
 Items Skipped
The number of items in the user’s on-premises mailbox that weren’t migrated to the Exchange Online mailbox.
the report only shows me this "10/20/2014 8:57:54 PM [DBXPR03MB079] 3 corrupt items (0 B (0 bytes)) were skipped."

i need to know what actually was failed i am logedin via exchange powershell
ASKER CERTIFIED SOLUTION
Avatar of becraig
becraig
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
i got it thanks