You’re right, this is a deeper issue that’s showing up on 25H2 systems and not just a simple signing mismatch. Based on what’s coming out from Microsoft and community reports, the root cause seems to be twofold: stricter SMB hardening and new SID validation introduced in recent cumulative updates like KB5065426. These updates enforce Extended Protection for Authentication and block NTLM fallback in more scenarios, especially when machines share identical or near-identical SIDs from cloned images. That explains why some systems work and others don’t, even with identical policies.
Two things worth testing: • Check if the affected machines were imaged without running Sysprep. Duplicate SIDs now break SMB and RDP authentication. If that’s the case, regenerating SIDs or re-imaging with Sysprep is the long-term fix. • If SID uniqueness isn’t the issue, try relaxing NTLM restrictions temporarily. In the registry under HKLM\SYSTEM\CurrentControlSet\Control\Lsa\MSV1_0, add or confirm NtlmMinClientSec and NtlmMinServerSec values (DWORD) set to 0x20000000 to allow NTLMv2 with 128-bit encryption. Also, check LanmanWorkstation for AllowInsecureGuestAuth if you need to test guest fallback.
Do you want me to give you the exact PowerShell commands and registry paths for these changes, plus a way to audit SID duplication across your fleet? Or should we focus on a workaround that doesn’t involve re-imaging?