Skip to content

Commit ad38465

Browse files
authored
TargetDeliveryDomain_for_Onboarding.md
The examples for onboarding batches must use the default coexistence domain in hybrid: <tenant_domain>.mail.onmicrosoft.com. Reference https://docs.microsoft.com/en-us/exchange/hybrid-deployment/move-mailboxes#step-3-use-the-eac-to-move-mailboxes . The domain cloud.contoso.com is misleading for customers - as seen in support cases - who will get an incorrect RemoteRoutingAddress on the remote mailboxes objects after being migrated to cloud and missing basic Hybrid functionality.
1 parent 225714c commit ad38465

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

exchange/exchange-ps/exchange/New-MigrationBatch.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ This example creates a migration batch for a cross-forest enterprise move, where
307307
```powershell
308308
$Credentials = Get-Credential
309309
$MigrationEndpointOnPrem = New-MigrationEndpoint -ExchangeRemoteMove -Name OnpremEndpoint -Autodiscover -EmailAddress [email protected] -Credentials $Credentials
310-
$OnboardingBatch = New-MigrationBatch -Name RemoteOnBoarding1 -SourceEndpoint $MigrationEndpointOnprem.Identity -TargetDeliveryDomain cloud.contoso.com -CSVData ([System.IO.File]::ReadAllBytes("C:\Users\Administrator\Desktop\RemoteOnBoarding1.csv"))
310+
$OnboardingBatch = New-MigrationBatch -Name RemoteOnBoarding1 -SourceEndpoint $MigrationEndpointOnprem.Identity -TargetDeliveryDomain contoso.mail.onmicrosoft.com -CSVData ([System.IO.File]::ReadAllBytes("C:\Users\Administrator\Desktop\RemoteOnBoarding1.csv"))
311311
Start-MigrationBatch -Identity $OnboardingBatch.Identity
312312
```
313313

@@ -354,7 +354,7 @@ This example creates a migration endpoint for the connection settings to the IMA
354354
```powershell
355355
$Credentials = Get-Credential
356356
$MigrationEndpointOnPrem = New-MigrationEndpoint -ExchangeRemoteMove -Name OnpremEndpoint -Autodiscover -EmailAddress [email protected] -Credentials $Credentials
357-
$OnboardingBatch = New-MigrationBatch -Name RemoteOnBoarding1 -SourceEndpoint $MigrationEndpointOnprem.Identity -TargetDeliveryDomain cloud.contoso.com -CSVData ([System.IO.File]::ReadAllBytes("C:\Users\Administrator\Desktop\RemoteOnBoarding1.csv")) -CompleteAfter "09/01/2018 7:00 PM"
357+
$OnboardingBatch = New-MigrationBatch -Name RemoteOnBoarding1 -SourceEndpoint $MigrationEndpointOnprem.Identity -TargetDeliveryDomain contoso.mail.onmicrosoft.com -CSVData ([System.IO.File]::ReadAllBytes("C:\Users\Administrator\Desktop\RemoteOnBoarding1.csv")) -CompleteAfter "09/01/2018 7:00 PM"
358358
Start-MigrationBatch -Identity $OnboardingBatch.Identity
359359
```
360360

@@ -364,7 +364,7 @@ This example is the same as Example 3, but the CompleteAfter parameter is also u
364364
```powershell
365365
$Credentials = Get-Credential
366366
$MigrationEndpointOnPrem = New-MigrationEndpoint -ExchangeRemoteMove -Name OnpremEndpoint -Autodiscover -EmailAddress [email protected] -Credentials $Credentials
367-
$OnboardingBatch = New-MigrationBatch -Name RemoteOnBoarding1 -SourceEndpoint $MigrationEndpointOnprem.Identity -TargetDeliveryDomain cloud.contoso.com -CSVData ([System.IO.File]::ReadAllBytes("C:\Users\Administrator\Desktop\RemoteOnBoarding1.csv")) -CompleteAfter "09/01/2018 7:00 PM" -TimeZone "Pacific Standard Time"
367+
$OnboardingBatch = New-MigrationBatch -Name RemoteOnBoarding1 -SourceEndpoint $MigrationEndpointOnprem.Identity -TargetDeliveryDomain contoso.mail.onmicrosoft.com -CSVData ([System.IO.File]::ReadAllBytes("C:\Users\Administrator\Desktop\RemoteOnBoarding1.csv")) -CompleteAfter "09/01/2018 7:00 PM" -TimeZone "Pacific Standard Time"
368368
Start-MigrationBatch -Identity $OnboardingBatch.Identity
369369
```
370370

0 commit comments

Comments
 (0)