Quantcast
Channel: Practical 365
Viewing all articles
Browse latest Browse all 515

PowerShell One-Liner: Summary of Mailbox Move Request Status

$
0
0

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.

       

Related Stories

 

Viewing all articles
Browse latest Browse all 515

Trending Articles