Hello, @Mueller, Jim,
Welcome to the Microsoft Q&A platform!
According to the official statement (Upgrading your organization from current versions to Exchange Server SE | Microsoft Community Hub), only Exchange 2019 CU15 version supports in-place upgrade to SE version. So, I would recommend you use the latest Exchange 2019 CU15 version now.
If you need to use Exchange 2016 version in your organization, you need to fully backup the database as well as other custom settings while doing the update migration. The following methods are for your reference:
- using Windows Server Backup, backup the entire Exchange database. You can download the Features through Server manager.
- Create a backup folder and export the customized settings (database, connectors, etc.) using powershell:
Get-MailboxDatabase | Export-Clixml -Path “C:\Backup\MailboxDatabases.xml”
Get-ReceiveConnector | Export-Clixml -Path “C:\Backup\ReceiveConnectors.xml”
Get-SendConnector | Export-Clixml -Path “C:\Backup\SendConnectors.xml”
Get-TransportRule | Export-Clixml -Path “C:\Backup\TransportRules.xml”
- Backup the certificate:
$cert = Get-ExchangeCertificate | Where-Object { $_.Services -match “IIS” }
Export-ExchangeCertificate -Thumbprint $cert.Thumbprint -BinaryEncoded -Password (Read-Host “Enter password” -AsSecureString) | Set-Content - Path “C:\Backup\ExchangeCert.pfx” -Encoding Byte
After completing the backup operation, when releasing the SE, then upgrade from Exchange 2016 CU23 to Exchange 2019 CU15 and finally to the SE version.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".