The administration and maintenance of Microsoft Exchange Server to ensure secure, reliable, and efficient email and collaboration services across an organization.
Hi @Mike Page
Thanks for reaching out to the Microsoft Q&A forum.
Based on my research, this error message, Assert: JMACProvider.getCertificates:protectionCertificates.length<1 usually appears when the Exchange Server OAuth certificate has expired or is no longer present on the system. To confirm its current status, you can run the PowerShell command below:
(Get-AuthConfig).CurrentCertificateThumbprint | Get-ExchangeCertificate | Format-List
If it shows that the OAuth certificate is missing or expired, you can generate a new one using:
New-ExchangeCertificate -KeySize 2048 `
-PrivateKeyExportable $true `
-SubjectName "cn=Microsoft Exchange Server Auth Certificate" `
-FriendlyName "Microsoft Exchange Server Auth Certificate" `
-DomainName @()
After creating the certificate, assign it for OAuth authentication:
Set-AuthConfig -NewCertificateThumbprint <ThumbprintFromAboveCMD> -NewCertificateEffectiveDate (Get-Date).ToUniversalTime()
Set-AuthConfig -PublishCertificate
Set-AuthConfig -ClearPreviousCertificate
When the configuration is complete, restart the Microsoft Exchange Service Host. You can then refresh IIS by running IISReset or recycle the OWA and EAC application pools:
Restart-WebAppPool MSExchangeOWAAppPool
Restart-WebAppPool MSExchangeECPAppPool
For your reference, you can review: Can't access OWA/EAC with expired OAuth certificate - Exchange | Microsoft Learn
You can also review a similar case reported by another user in Exchange Server error in '/owa' application | Microsoft Community Hub
I hope this information helps you move forward. If you have any updates, please feel free to share.
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.