Hi @Kent Hanna,
Welcome to the Microsoft Q&A platform!
According to your description, it sounds like you’re encountering a compatibility issue between your on-premises Exchange 2010 Hybrid server and the Exchange 2016 server you’re trying to install. Here are a few steps you can take to troubleshoot and resolve the issue:
- Ensure that your Office 365 tenant is running a version of Exchange that is compatible with Exchange 2016. You can check the compatibility requirements on the Microsoft documentation.
- Make sure you are using the latest version of the Hybrid Configuration Wizard. You can download it from the Exchange Online Admin Center.
- Although you’ve already done this, try exporting the XML file again using the exact command provided:
- Connect to your Exchange Online tenant using PowerShell:
$UserCredential = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection Import-PSSession $Session -DisableNameChecking
- Export the Organization Configuration to an XML file:
Get-OrganizationConfig | Export-Clixml -Path MyTenantOrganizationConfig.xml
- Ensure that the file is saved correctly and try to use a different path to avoid any possible path-related issues.
- Double-check the setup command you are using. It should look like this:
Setup.exe /PrepareAD /TenantOrganizationConfig d:\exchangeserver2016-cu23\MyTenantOrganizationConfig.xml /IAcceptExchangeServerLicenseTerms_DiagnosticDataON
- Ensure your existing Exchange 2010 servers are fully up-to-date with the latest service packs and rollups. Also, make sure that the Exchange 2016 installation files are the latest available version.
Refer to: https://learn.microsoft.com/en-us/exchange/exchange-hybrid
Please feel free to contact me if you have any queries.
Best,
Jake Zhang