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.
[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
The post PowerShell One-Liner: Summary of Mailbox Move Request Status appeared first on Practical 365.