Share via

The System Cannot a domain controller to service the authentication request. Please try again later

Sergey K 0 Reputation points
2026-02-26T09:21:18.3633333+00:00

I am in home network. I have Windows 11 pro version. I don't have DC. After windows update i can not access any shared folders anymore. There were no passwords and anonymous access was allowed. But now i am getting login dialog with a note : "The System Cannot a domain controller to service the authentication request. Please try again later"

I have tried to turn on SMB v1.0 on the computer and on NAS device but this did not help.

as well Enabling NTLM makes no difference. Still getting "can not authenticate because NTLM is disabled"

Get-SmbClientConfiguration command returns: BlockNTLM : False

Everything still works as expected for Windows 10 computer.

Any idea what to do?

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

Answer recommended by moderator
  1. Sergey K 0 Reputation points
    2026-02-27T14:29:09.16+00:00

    Finally i have found a way:

    On a NAS i set to use SMB2orSMB3 and NTLMv2 only

    on Win 11

    Network security: LAN Manager authentication level. поставил в NTLMv2 only

    and add NAS IP address and domain name to the both list:

    Network security: RestrictNTLM: Add server exceptions in this domain

    Network security: RestrictNTLM: Add remote server exceptions for NTLM authentication

    and finally

    • Registry Editor Fix (If Group Policy is unavailable):
      • Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa.
      • Set LmCompatibilityLevel to 3.

    After that it works the same way as in Win10


3 additional answers

Sort by: Most helpful
  1. Lychee-Ng 16,890 Reputation points Microsoft External Staff Moderator
    2026-02-27T07:50:21.9533333+00:00

    Hi Sergey K,

    Thanks for reaching out to Microsoft Q&A!

    I’m sorry to hear that you’re suddenly blocked from your shared folders. This is because starting with newer updates, NTLM is blocked for SMB authentication by default, even if it doesn't say so. Here’s some workarounds you can consider:

    1 - Stop using anonymous / guest access

    • On the NAS or the other PC, create a local user account with password
    • Assign that user permissions to the shared folder
    • On Windows 11, connect using explicit credentials:
      • \\NASNAME\Share
      • Username: NASNAME\user
      • Password: <password>

    2 - Re‑enable insecure NTLM/guest authentication

    • Press Win + R > type regedit > press Enter to open Registry Editor
    • Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters
    • Create a new DWORD > Name it AllowInsecureGuestAuth and set value to 1
    • Restart your PC and check the connections again.

    Disclaimer: This option poses some security risks so consider carefully before trying, and revert the change if it doesn't help with the issue. Generally, modifying registry subkeys or work group is intended for advanced users, administrators, and IT Professionals. It can help fix some problems, however, serious problems might occur if you modify the registry incorrectly. Therefore, make sure that you follow these steps carefully. For further protection, first check out How to back up and restore the registry in Windows - Microsoft Support 

    Unfortunately, Windows 11 now blocks NTLM‑based SMB authentication, even with credentials. If the NAS cannot negotiate modern authentication, Windows will refuse the connection.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

  2. Sergey K 0 Reputation points
    2026-02-26T11:29:32.6966667+00:00

    does not help.

    I have created password protected share on NAS. But when a call NET USE with explicit credentials

    I am getting:

    "System error 1937 has occurred.

    Authentication failed because NTLM authentication has been disabled."

    NAS supports SMB2 and SMB3 and configured to use them.

    on a Windows machine all mentioned services are running, network discovery is allowed and file share allowed as well

    0 comments No comments

  3. Q&A Assist
    2026-02-26T09:21:40.8066667+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    The error text matches ERROR_DOWNGRADE_DETECTED / STATUS_DOWNGRADE_DETECTED, which appears after certain Windows authentication hardening updates. On a home Windows 11 Pro PC with no domain controller, this typically shows up when trying to access shares that previously allowed anonymous/guest access or very weak authentication.

    Because the behavior changed after a Windows update and Windows 10 still works, the issue is not with the NAS or share itself but with the new authentication requirements on Windows 11.

    Use these steps that are supported for home file-sharing scenarios:

    1. Test access with explicit credentials
      • On the Windows 11 PC, open Command Prompt.
      • Run:
             net use * \\<NAS-or-PC-name>\<ShareName> /user:<NAS-or-PC-local-user> <password>
        
      • If this succeeds, the share itself is fine and the problem is specifically with guest/anonymous access.
    2. Avoid SMB1 and guest/anonymous access
      • SMB1 is deprecated and should remain disabled for security reasons.
      • Configure the NAS or the other Windows machine to require a local user account and password for the share instead of anonymous access.
      • Then always connect using those credentials (as in step 1).
    3. Turn on SMB client support and discovery features on Windows 11
      • Ensure SMB client support is enabled:
        1. Open Control Panel.
        2. Select Programs > Programs and Features > Turn Windows features on or off.
        3. Under SMB 1.0/CIFS File Sharing Support, make sure SMB 1.0/CIFS Client is checked only if the NAS absolutely requires SMB1 (otherwise leave SMB1 off and use SMB2/3 on the NAS).
      • Enable network discovery and file and printer sharing:
        1. Open Control Panel.
        2. Select Network and Internet > Network and Sharing Center > Advanced sharing settings.
        3. Under Private, select Turn on network discovery.
        4. Select Turn on file and printer sharing.
        5. Select Save changes.
      • Make sure the following services are set to Automatic and running (Start > search Services):
        • Function Discovery Provider Host
        • Function Discovery Resource Publication
        • SSDP Discovery
        • UPnP Device Host
      • Restart the PC.
    4. Map the share from Windows 11 using net use
      • From Command Prompt:
             net use <DriveLetter>: \\<NAS-or-PC-name>\<ShareName>
        
      • If prompted, supply the local account and password configured on the NAS or other PC.
    5. If the error persists only on Windows 11
      • Confirm that the NAS is using SMB2/3 and not forcing SMB1-only.
      • Ensure NTLM is enabled on the NAS side as well (or configure it to use modern authentication where possible).
      • If the NAS only supports guest/anonymous access, change its configuration to use a named user with a password; Windows 11 increasingly blocks insecure guest logons by default.

    These changes align the share with the newer authentication requirements introduced by recent Windows updates, avoiding the The system cannot contact a domain controller to service the authentication request error on a non-domain home network.


    References:

    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.