When you’ve got a lot of mailbox move requests running during an Exchange migration, it’s useful to be able to pull a quick summary of how they’re all going. You can achieve this by piping the Get-MoveRequest cmdlet to the Group-Object cmdlet.
1
2
3
4
5
6
7
8
|
[PS] C:\>Get–MoveRequest | Group–Object –Property:Status | Select–Object Name,Count | Format–Table –Auto
Name Count
—— ——–
Queued 36
InProgress 2
Completed 158
CompletedWithWarning 1
|