Hi @Пахомов Кирилл Евгеньевич,
Welcome to the Microsoft Q&A platform!
Based on your description, you are experiencing a common problem with AD FS and Exchange Server 2019. The error "Encryption certificate is missing" usually means that the encryption certificate required by AD FS is missing or incorrectly configured.
You can follow the steps below to resolve this issue:
- Make sure the AD FS server has the correct encryption certificate installed and configured. You can check this in the AD FS management console under Services > Certificates.
- Make sure the Exchange server has the necessary certificates installed. You can list the certificates in the Exchange Management Shell using the following command:
Get-ExchangeCertificate | fl Issuer,CertificateDomains
- Make sure that the AD FS configuration in Exchange correctly points to the AD FS server and that the certificate is correctly referenced. You can update the AD FS configuration using the following PowerShell command:
Set-AdfsProperties -CertificateThumbprint "<YourCertificateThumbprint>"
- If any certificates have expired, you need to renew or replace them. This includes the self-signed Microsoft Exchange Server Auth certificate, which can cause issue 1 if expired.
- After making changes to certificates or AD FS configuration, restart the related services on the AD FS and Exchange servers.
Please feel free to contact me for any updates. And if this helps, don't forget to mark it as an answer.
Best,
Jake Zhang