how to fix Dear Microsoft Support Team, We are unable to access a shared folder on a non-domain Windows PC from one domain-joined PC. Other computers can access the same folder successfully. Network connectivity and SMB port 445 are working, but we recei

Hardeep Singh (IT) 0 Reputation points
2026-08-22T11:42:14.1+00:00

Dear Microsoft Support Team,

We are unable to access a shared folder on a non-domain Windows PC from one domain-joined PC. Other computers can access the same folder successfully. Network connectivity and SMB port 445 are working, but we receive System Error 53 and System Error 3227320323 during authentication. Please advise the cause and recommended fix.

Windows for business | Windows Client for IT Pros | Networking | Network connectivity and file sharing
0 comments No comments

1 answer

Sort by: Most helpful
  1. AI answer

    2026-08-22T11:42:36.46+00:00

    Because other computers can access the same non-domain PC, the share itself, basic network reachability, and port 445 are likely not the primary problem. The failure is most consistent with a client-side authentication or name-resolution configuration issue on the affected domain-joined PC.

    Recommended checks and fixes:

    1. Try the share by UNC path and by net use
         net use * \\<ServerName>\<ShareName>
      
      This helps confirm whether the issue is specific to File Explorer or affects SMB access generally.
    2. Force authentication with a local account on the non-domain PC For a domain-joined client connecting to a workgroup/non-domain server, Windows can send domain credentials that the target PC cannot validate. When prompted for credentials, use the remote computer’s local account instead of domain credentials.
    3. Clear saved credentials on the affected PC If cached credentials exist for the server name or IP address, remove them and reconnect using the local account on the non-domain PC. Incorrect cached credentials can cause authentication failures even when connectivity is fine.
    4. Check the TCP/IP NetBIOS Helper service For System error 53, one documented cause is that TCP/IP NetBIOS Helper is stopped or running as Local System instead of Local Service. Make sure the service is running as Local Service.
    5. Enable NetBIOS over TCP/IP on the affected client If access by name is failing, enable NetBIOS over TCP/IP in the adapter’s WINS settings. This is relevant when the path works by IP but not by hostname.
    6. Verify required network services are running If core Windows networking services are stopped, SMB access can fail. Check that these services are not stopped:
      • Network Connections
      • Network List Service
      • Network Location Awareness
      • Network Store Interface Service
      • DHCP Client
      • TCP/IP NetBIOS Helper
      • Workstation
    7. Confirm sharing visibility settings on the affected client On the affected PC, verify:
      • Network discovery is turned on
      • File and printer sharing is turned on
      • These services are set to Automatic:
        • Function Discovery Provider Host
        • Function Discovery Resource Publication
        • SSDP Discovery
        • UPnP Device Host Then restart the PC.
    8. If the issue is specifically “Access Denied” after connection, verify permissions If connection succeeds for some users but not this one, check both:
      • Share permissions
      • NTFS Security permissions
    9. If the problem persists, collect SMB diagnostics
         Get-SmbClientConfiguration | Out-File C:\SMBdata\client-config.txt
         Get-SmbConnection          | Out-File C:\SMBdata\connections.txt
         netsh trace start capture=yes scenario=NetConnection tracefile=C:\SMBdata\smb.etl
      
      Reproduce the issue, then stop the trace:
         netsh trace stop
      
      Also export the SMBClient event log for the repro window.

    A practical first fix for this exact scenario is:

    • remove cached credentials for the target server,
    • reconnect using the non-domain PC’s local account,
    • ensure TCP/IP NetBIOS Helper is running as Local Service,
    • enable NetBIOS over TCP/IP if hostname access fails.

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

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.