Hi @Monte Caldwell ,
Welcome to the Microsoft Q&A platform!
Based on your description, you are dealing with an issue where the Mailbox Replication Service (MRS) is stuck in a stopped state. Here are a few steps you can try to resolve the issue:
- Run the following PowerShell commands to make sure there are no pending move requests:
Get-MoveRequest | Get-MoveRequestStatistics
If there are, you may need to remove them using the following command:
Remove-MoveRequest -Identity <MoveRequestIdentity>
- Sometimes, manually restarting the service can help. Run:
Restart-Service MSExchangeMailboxReplication
- Look for any related errors in Event Viewer under Applications and Services Logs > Microsoft > Exchange > MailboxReplication. This may give you more insight into what is causing the issue.
- Make sure your Exchange 2016 server is updated with the latest cumulative updates and patches. Sometimes, updating can resolve underlying issues.
- Check the health of MRS using the following command:
Get-ServerHealth -Identity <ServerName> | Where-Object {$_.HealthSetName -eq "MailboxReplication"}
- If the above steps do not work, you may need to rebuild the MRS configuration. This involves stopping the service, deleting the configuration file, and then restarting the service. Perform this step with caution and ensure you have a backup.
Please feel free to contact me for any updates. And if this helps, don't forget to mark it as an answer.
Best,
Jake Zhang