Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2
Topic Last Modified: 2012-07-23
You can complete a move request that failed or was suspended.
Looking for other management tasks related to move requests? Check out Managing Move Requests.
Prerequisites
Before you can complete a move request, it must have a move request status of Suspended, Automatically suspended, or Failed. For more information, see Suspend Move Requests.
Use the EMC to complete a move request
You need to be assigned permissions before you can perform this procedure. To see what permissions you need, see the "Mailbox moves" entry in the Mailbox Permissions topic.
- In the console tree, navigate to Recipient Configuration
> Move Requests.
- In the result pane, select one or more mailboxes that have a
move request status of Failed, Suspended, or
Automatically suspended.
- In the action pane, click Complete Move Request.
- In Complete Move Request, confirm that you want to
complete the move request by clicking Yes.
Use the Shell to complete a move request
You need to be assigned permissions before you can perform this procedure. To see what permissions you need, see the "Mailbox moves" entry in the Mailbox Permissions topic.
This example completes the move request for Tony Smith's mailbox.
Copy Code | |
---|---|
Resume-MoveRequest -Identity "Tony@contoso.com" |
This example resumes any failed move requests.
Copy Code | |
---|---|
Get-MoveRequest -MoveStatus Failed | Resume-MoveRequest |
This example resumes any move requests that have the suspend comment "Resume after 10 P.M."
Copy Code | |
---|---|
Get-MoveRequest -MoveStatus Suspended | Get-MoveRequestStatistics |Where {$_.Message -like "*resume after 10 P.M.*"} | Resume-MoveRequest |
For detailed syntax and parameter information, see the following topics: