Hi,@James
Thanks for posting your question in the Microsoft Q&A forum.
Based on your description, these requests are not properly updating their status upon completion.
Here are my suggestions:
- First, you should ensure that the mailbox is indeed active and healthy on the target database. Use the
Get-MailboxStatistics
cmdlet to verify the mailbox status.
Get-MailboxStatistics -Identity "user@example.com" | Format-List DisplayName,Database,LastLogonTime
- If the mailbox appears to be healthy, you can proceed to remove the move request. Use the
Remove-MoveRequest
cmdlet to clear the completed or 'stuck' move requests for each mailbox:
Remove-MoveRequest -Identity "user@example.com"
- To ensure that all move requests in the status 'WaitingForJobPickup' are cleared, you can pipe the
Get-MoveRequest
cmdlet to filter those specifically and remove them:
Get-MoveRequest -MoveStatus WaitingForJobPickup | Remove-MoveRequest
- After you have removed the move requests, run
Get-MoveRequest
again to ensure that they have been cleared:
Get-MoveRequest
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.