Hi Patrick Genova,
Based on your problem description, the issue occurs because the Microsoft Exchange migration mailbox resides on a server in another country, and your suggested approach is feasible, you can perform the following actions in the Exchange Command Line Manager (EMS):
- Run the following format command to create a new arbitration mailbox:
New-Mailbox -Arbitration -Name ArbitrationMailboxUSA -UserPrincipalName ******@domain.com -Database "DB01"
- After creating a new Arbitration Mailbox, you need to enable its Mail Relocation Service (MRS). Run the following format command:
Set-Mailbox -Arbitration ******@domain.com -Migration
- If your organization uses email address policies to automatically manage email addresses for mailboxes, ensure that the new arbitration mailbox also adheres to these policies. If you need to set up email addresses manually, you can use the following format command:
Set-Mailbox -Arbitration ******@domain.com -EmailAddresses SMTP:******@domain.com
- When you begin migrating mailboxes, ensure that the arbitration mailbox on the new US server is designated to store migration reports and logs. When using the 'New-MoveRequest' command, you can specify the arbitration mailbox with the '-ArbitrationMailbox' parameter:
New-MoveRequest -Identity "UserMailbox" -TargetDatabase "DB01" -ArbitrationMailbox ******@domain.com
By creating and configuring a new arbitration mailbox on an Exchange 2016 server located in the United States, you should be able to facilitate mailbox movement without having to rely on problematic cross-border server communications.
If the problem persists, feel free to comment me and I'll be happy to help you out!