Hello,
The error you’re seeing with SMB in build 29667.1000 is not a configuration mistake on your side but a regression introduced in recent Insider builds. The key detail is the STATUS_INVALID_PARAMETER (0xC000000D) during session setup, which points to a failure in how the client and server negotiate authentication parameters. Since you confirmed that your SMB configuration hasn’t been modified and it worked fine until the August builds, this rules out local misconfiguration and strongly suggests a protocol-level change or bug in the SMB stack introduced by Microsoft.
The “SPN validation policy: SPN optional / no validation” line is important. It indicates that Kerberos SPN validation isn’t the root cause here, but the failure occurs before SPN resolution. This aligns with known issues where NTLM authentication fails due to mismatched LmCompatibilityLevel or changes in how NTLM fallback is handled. In recent Insider builds, Microsoft has tightened SMB authentication defaults, particularly around guest access and NTLMv1 fallback. Non-Windows clients are especially impacted because they may still attempt NTLMv1 or send parameters that Windows now rejects outright.
At this point, the most reliable workaround is to explicitly enforce NTLMv2 on both sides. On Windows, check the registry key at:
HKLM\SYSTEM\CurrentControlSet\Control\Lsa\LmCompatibilityLevel
Set it to 5 (Send NTLMv2 response only. Refuse LM & NTLM). This ensures the client only uses NTLMv2. If you’re connecting from a Linux or macOS client, make sure the SMB client library (e.g., Samba) is configured with client ntlmv2 auth = yes in smb.conf. If guest access was previously working, note that guest authentication has been disabled by default in Insider builds since mid-2024, so you’ll need to use a proper username/password.
If you’ve already aligned NTLM settings and the issue persists, then this is a regression in the Insider build itself. Microsoft has acknowledged intermittent SMB authentication failures in recent Dev Channel releases, and the fix is pending in upcoming cumulative updates. In that case, the only stable resolution is either to roll back to a pre-August build or wait for the official patch.
I recommend confirming the NTLM registry setting, checking Samba client configuration if applicable, and if the error continues, treat it as a known Insider build bug rather than a misconfiguration.
I hope you've found something useful here. If it helps you get more insight into the issue, it's appreciated to accept the answer. Should you have more questions, feel free to leave a message. Have a nice day!
HL.