
Hello JG,
Thank you for reaching out here in the Microsoft Q&A.
I understand that you are having trouble with persistent and intermittent authentication failures in your hybrid Microsoft Entra ID environment, and I can understand the inconvenience this has caused you.
Based on your detailed findings, the core issue is almost certainly an outdated password for the AZUREADSSOACC computer account in your on-premises Active Directory. This account is critical for Seamless Single Sign-On (SSO). Microsoft strongly recommends that its Kerberos decryption key (password) be rolled over at least every 30 days. Since the password was last set in October 2023, it is no longer valid for decrypting authentication tickets, which explains the errors you are seeing.
To resolve this, you must immediately perform a rollover of the Kerberos decryption key for the AZUREADSSOACC account.
You will need to run these commands on your Microsoft Entra Connect server:
- Open PowerShell as an administrator.
- Import the Seamless SSO PowerShell module:
Import-Module "C:\Program Files\Microsoft Azure Active Directory Connect\AzureADSSO.psd1"
- Establish a new authentication context with Azure AD (you will be prompted for Hybrid Identity Administrator credentials):
New-AzureADSSOAuthenticationContext
- Perform the Kerberos key rollover (you will be prompted for Domain Administrator credentials):
Update-AzureADSSOForest
After completing these steps, the authentication issues should be resolved. For future prevention, we recommend creating a Scheduled Task to run the Update-AzureADSSOForest command automatically every 30 days.
Please feel free to post back if you need further assistance.
Best Regards,
Alex | Microsoft Q&A Support Specialist