Thursday, April 24, 2014

Exchange 2013 - Checking the status of mailbox moves

Having initiated a mailbox move using the Poweshell cmdlet:

New-MoveRequest

In order to check that status, you can use the following Powershell command:

Get-MoveRequest

To tidy that up and provide a little more information:

Get-MoveRequest | Select DisplayName, Status, BatchName | FT -AutoSize

Now, once you have examined that output, you might want to know the progress on a particular user, in this example 'SmithJ', we can pipe to the command

Get-MoveRequestStatistics

So for a particular user, we can use something like this:

Get-MoveRequest SmithJ |Get-MoveRequestStatistics |Select DisplayName, PercentComplete | ft -autosize

To read more see the following link:

http://technet.microsoft.com/en-us/library/dd335227(v=exchg.150).aspx

Cheers!

No comments:

Post a Comment