SMB Sharing Fails on Windows 11 25H2

Sam 30 Reputation points
2025-11-27T16:52:57.2233333+00:00

In our business we have been using a mix of Windows 10 and 11 Pro for a while, with limited teething issues in the upgrade, however some recently upgraded servers (going straight to 25H2) are unable to access SMB shares between devices. This has been an issue in various departments working from various, direct upgrades, prepped images or clean installs. We're very confident that the cause of the issue is changes in how Windows 11 handles SMB shares, with no changes being made to security policies during this upgrade process.

When a share is accessed over the network the file explorer popup states the username or password is incorrect, no matter what is entered. When looking at the Event Logs if the password is correct, then the 4625 event has the details:

Status: 0xc000006d
FailureReason: %%2304
SubStatus: 0x0
TargetDomainName: -

When the password is deliberately incorrect the event logs show:

Status: 0xc000006d  
FailureReason: %%2313 (Unknown user name or bad password)
SubStatus: 0xc000006a
TargetDomainName: [name of server trying to access the share]

We've spent a fair amount of time investigating this issue and trying various security policies but with no luck. Is this an issue other people are seeing, is there a known fix that I've not been able to find?

Thanks

Windows for home | Windows 11 | Files, folders, and storage
0 comments No comments

Answer accepted by question author
Restee Miranda 14,100 Reputation points Independent Advisor
2025-11-28T14:11:08.6466667+00:00

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?

Was this answer helpful?

10+ people found this answer helpful.

5 additional answers

Sort by: Most helpful
  1. Beat Suess 0 Reputation points
    2026-07-13T04:02:00.1666667+00:00

    That problem is coming from cloning a PC or replacing a hard disk or SSD, and cloning it.

    Run a Windows Install repair on the PC to get the different MachineGuid

    reg query "HKLM\SOFTWARE\Microsoft\Cryptography" /v MachineGuid
    ((Get-LocalUser -Name "Administrator").SID.Value -replace "-500","")

    Good luck

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.