MxCloudPro

Exchange MRS Proxy endpoint

Enable MRS Proxy endpoint for remote moves

 

The Mailbox Replication service (MRS) has a proxy endpoint that’s required for cross-forest mailbox moves and remote move migrations between your on-premises Exchange organization and Microsoft 365 or Office 365. You enable the MRS proxy endpoint in the Exchange Web Services (EWS) virtual directory settings in the Client Access (frontend) services on Exchange 2016 or Exchange 2019 Mailbox servers.

Where you enable the MRS Proxy endpoint depends on the type and direction of the mailbox move:

Note: If you use the Exchange admin center (EAC) to move mailboxes, cross-forest moves and onboarding remote move migrations are pull move types, because you initiate the request from the target environment. Offboarding remote move migrations are push move types because you initiate the request from the source environment.

Note:

 

Use the EAC to enable the MRS Proxy endpoint

  1. In the EAC, go to Servers > Virtual Directories.
  2. Select the EWS virtual directory that you want to configure.
    • You can use the Select server drop-down list to filter the Exchange servers by name.
    • To only display EWS virtual directories, select EWS in the Select type drop-down list.

After you’ve selected the EWS virtual directory that you want to configure, click Edit 

  1. On the properties page that opens, on the General tab, select the Enable MRS Proxy endpoint check box, and then click Save.

 

Use the Exchange Management Shell to enable the MRS Proxy endpoint

To enable the MRS Proxy endpoint, use this syntax:

Set-WebServicesVirtualDirectory -Identity “[<Server>\]EWS (Default Web Site)” -MRSProxyEnabled $true

The below example enables the MRS Proxy endpoint in Client Access services on the Mailbox server named EXCH-SRV-01.

Set-WebServicesVirtualDirectory -Identity “EXCH-SRV-01\EWS (Default Web Site)” -MRSProxyEnabled $true

The below example enables the MRS Proxy endpoint in Client Access services on all Mailbox servers in your Exchange organization.

Get-WebServicesVirtualDirectory | Set-WebServicesVirtualDirectory -MRSProxyEnabled $true

How to verify if MRS Proxy endpoint enabled successfully?

To verify that you’ve successfully enabled the MRS Proxy endpoint, do any of these steps:

PowerShell

Get-WebServicesVirtualDirectory | Format-Table -Auto Identity,MRSProxyEnabled

Replace <EmailAddress> with the email address of one of the mailboxes that you want to move, and run this command in the Exchange Management Shell:

Test-MigrationServerAvailability -ExchangeRemoteMove -Autodiscover -EmailAddress <EmailAddress> -Credentials (Get-Credential)

To run this command successfully, the MRS Proxy endpoint must be enabled.

 

 

Exit mobile version