Hi @Phalle, Mahesh
Thank you for posting your question in Microsoft Q&A.
As your description, looks like you are encountering the "WrongAudienceUriOrBadSigningCert" issue in Exchange Server 2016 when using ADFS. This could be caused either a mismatch in the configured audience URIs between ADFS and Exchange, or an issue with the ADFS token-signing certificate (such as it being untrusted, expired, or not properly imported on the Exchange server).
You could try to follow these steps to troubleshoot it:
1.Recheck and import the ADFS Token-Signing Certificate:
On your ADFS server, run this to get the current token-signing certificate thumbprint:
Get-AdfsCertificate -CertificateType Token-Signing | Select-Object Thumbprint
Export this certificate (public key only) from the ADFS server's certificate store (via MMC or PowerShell: Export-Certificate).
On each Exchange 2016 server, import the exported certificate into the Computer account > Trusted Root Certification Authorities store (use MMC snap-in or PowerShell: Import-Certificate).
Restart the Microsoft Exchange Service Host service on the Exchange servers:
Restart-Service MSExchangeServiceHost
Test ECP access again then check if the issue still persists.
2.Check and Update Exchange Organization Configuration
You could use this command to view your current ADFS settings:
Get-OrganizationConfig | FL *ADFS*
Ensure AdfsAudienceUris includes all variations for OWA and ECP, AdfsIssuer points to your ADFS endpoint, and AdfsSignCertificateThumbprint matches the thumbprint from step 1.
If mismatched, update it to include multiple URIs for consistency:
Set-OrganizationConfig -AdfsIssuer https://<FederationServiceName>/adfs/ls/ -AdfsAudienceUris "<OotwURL>","<EACURL>" -AdfsSignCertificateThumbprint "<Thumbprint>"
You can refer to: Use AD FS claims-based authentication with Outlook on the web | Microsoft Learn
I hope this helps.
Please understand that our initial reply may not always immediately resolve the issue. However, with your help and more detailed information, we can work together to find a solution.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.