Hi Carl,
My name is Jason and I am an independent advisor and windows user like yourself.
You're not alone—this issue has been cropping up for several organizations running Office 2024 LTSC with on-prem Exchange, especially after recent updates. Here's a breakdown of what's likely happening and how to mitigate it:
Root Cause
Office 2024 LTSC appears to be increasingly integrated with Microsoft 365 cloud services, even when running in a strictly on-premises environment. Despite registry keys like SignInOptions = 3 and ExcludeExplicitO365Endpoint = 1, Outlook may still attempt to reach out to Azure AD endpoints due to:
- Modern Authentication fallback attempts
- Background service discovery (e.g., Autodiscover redirecting to Office 365)
- Office licensing telemetry or activation checks
- Recent Office updates re-enabling cloud hooks
This behavior is especially common when:
- Users have no Microsoft 365 account associated
- Smartcard login is used for AD authentication
- Modern Auth is not deployed on Exchange on-prem
Recommended Fixes
- Disable Modern Authentication in Outlook
Even if you're not using Modern Auth, Outlook may still attempt it. Add this registry key:
[HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Common\Identity]
"EnableADAL"=dword:00000000
This disables Azure AD Authentication Library (ADAL) and forces Outlook to use legacy auth.
- Block Autodiscover to Office 365
Ensure Outlook doesn't redirect to cloud endpoints:
[HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\AutoDiscover]
"ExcludeExplicitO365Endpoint"=dword:00000001
"ExcludeHttpsRootDomain"=dword:00000001
"ExcludeHttpsAutoDiscoverDomain"=dword:00000001
"ExcludeSrvRecord"=dword:00000001
This blocks Autodiscover from reaching Office 365 and cloud services.
- Disable Office Sign-In Globally
You already have SignInOptions = 3, but double-check this key:
[HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Common\Internet]
"UseOnlineContent"=dword:00000000
This disables online content and cloud integration features.
- Check GPOs and Licensing
- Ensure Group Policy isn’t re-enabling cloud features.
- Confirm Office LTSC is properly activated and not falling back to Microsoft 365 licensing checks.
- Update Outlook to Latest LTSC Patch
Some builds of Office 2024 LTSC introduced aggressive cloud hooks. Updating to the latest patch may reduce this behavior Microsoft Learn justinho.com.
Optional Diagnostic
If you're comfortable with deeper inspection:
- Use Fiddler or Procmon to trace Outlook's network calls.
- Check for any calls to
login.microsoftonline.com, autodiscover.outlook.com, or office365.com.