Skip to content
Fixes & Errors

Network Drive Not Connecting in Windows 11

Network drive not connecting Windows 11 leaves mapped drives with red X errors after every restart or upgrade. Here are all the fixes — credentials, SMB, firewall, and registry.

Network Drive Not Connecting in Windows 11

Network drive not connecting in Windows 11 — the mapped drive showing a red X, “The network path was not found” error, or the drive disappearing after a restart — is a common issue with enterprise and home NAS setups that has well-established fixes. For a broader walkthrough, our Complete Guide to Fixing Windows, Browser, and Software Errors is a good next read.

Before troubleshooting: can you reach the server at all? Open File Explorer → address bar → type the server’s UNC path directly: \server-name or \192.168.1.x. If you can see shares there: the network connection works and the issue is with the drive mapping specifically. If this also fails: the server is unreachable — fix connectivity before worrying about drive mapping.

Fix 1: Reconnect the network drive

The fastest check: right-click the disconnected drive in File Explorer → “Disconnect” → then remap it. This PC → Map network drive → choose a drive letter → enter the path → check “Reconnect at sign-in” → Finish. Re-entering credentials during this process updates any stale saved credentials that were causing the connection to fail.

Fix 2: Credential Manager — the most common persistent failure cause

Windows saves network credentials in Credential Manager. When the server’s password changes (NAS firmware update, domain password change, account modification), the stored credential becomes invalid — Windows keeps trying to authenticate with the old password and fails silently, showing the drive as disconnected.

Control Panel → Credential Manager → Windows Credentials → look for entries matching the server name or IP → remove them → try reconnecting the drive. After removing: Windows prompts for fresh credentials when you access the path, and you can enter the current password. Check “Remember my credentials” during the reconnection to store the new credentials permanently.

Fix 3: SMB protocol version mismatch

Windows 11 disabled older SMB versions (SMB1 in particular) for security. Old NAS devices, older Windows servers, and some network equipment only speak SMB1 — which Windows 11 refuses by default. Symptoms: File Explorer can’t see the server at all; the UNC path access returns “The specified network name is no longer available.”

Check whether SMB1 is needed: try accessing the share from another machine. If older Windows 10 machines or macOS machines can reach it but Windows 11 can’t: SMB1 is the likely protocol mismatch. Options:

  • Enable SMB1 in Windows 11 (less secure): Settings → Apps → Optional features → “More Windows features” → check “SMB 1.0/CIFS File Sharing Support” → restart
  • Update the NAS firmware or server to support SMB2 or SMB3 (strongly preferred)
  • Check the NAS settings — most modern NAS devices (Synology, QNAP, TrueNAS) support SMB2/3 but may have it disabled — enable it in the NAS web interface under file sharing/SMB settings

Fix 4: DNS and name resolution

Network drives mapped by server name (\NAS-Device) depend on DNS or NetBIOS to resolve the name to an IP. When DNS fails or the IP changes: the drive can’t connect even though the server is running. Two approaches:

  • Map by IP instead of name: remap using \192.168.1.xShareName instead of \ServerNameShareName — IP mapping isn’t affected by DNS failures
  • Assign a static IP to the NAS/server: configure the NAS with a static IP (or DHCP reservation in the router) so the IP never changes, making name-based mapping more reliable

Fix 5: Always-offline mode

A Windows feature called “Offline Files” caches network drive content for access when the server is unavailable. When misconfigured: the drive shows as connected and functioning but isn’t actually pulling current data from the server. Disable Offline Files if it’s causing confusion: Control Panel → Sync Center → “Manage offline files” → Disable Offline Files → restart.

Fix 6: Guest access and anonymous connections

Some home NAS setups allow guest/anonymous access. Windows 11 blocks unauthenticated access by default — connecting to a NAS that uses guest access fails because Windows refuses to send an anonymous connection. Fix: either enable authentication on the NAS (recommended), or adjust the registry to allow guest access (Local Computer Policy → Computer Configuration → Windows Settings → Security Settings → Local Policies → Security Options → “Accounts: Guest account status” and related settings).

Our guide on network connectivity issues covers basic network troubleshooting for cases where the server itself isn’t reachable. For the SMB protocol and server authentication approaches, our file sharing guide covers NAS and Windows Server sharing configuration. Microsoft’s network drives documentation covers the full reconnect at sign-in logic and the group policy settings for persistent network drive connections in domain environments.

Network drive disconnecting after restart

Mapped drives that connect successfully but disappear after a restart are a Windows login timing issue. Windows reconnects mapped drives at login but starts applications before the network is fully available. The drives look disconnected because the reconnection attempt happened before the network was ready.

Permanent fix: use a startup script to add a delay before mapping. Create a .bat file:

@echo off
timeout /t 30 /nobreak
net use Z: \servershare /persistent:yes

Place this in the Windows Startup folder (Win+R → shell:startup) → the 30-second delay allows the network to fully initialise before mapping. Adjust the delay based on how long your network takes to become available after login.

Domain-joined machines and mapped drives via Group Policy

In enterprise environments: mapped drives are typically deployed through Group Policy Preferences (Computer/User Configuration → Preferences → Windows Settings → Drive Maps). Drives appearing then disappearing in enterprise settings are usually a GP refresh issue, not a network problem. IT manages these mappings — if a drive mapping is missing: check with IT rather than mapping it manually, as manual mappings can conflict with Group Policy managed ones.

Network Discovery and File Sharing

Windows’ network discovery settings affect whether local network devices are visible. Control Panel → Network and Sharing Center → “Change advanced sharing settings” → for the “Private” network profile: enable “Turn on network discovery” and “Turn on file and printer sharing.” Without discovery enabled: NAS and server shares may not be visible in File Explorer’s Network section, though UNC path access still works.

SMB signing requirements

Windows 11 2022 Update and later require SMB signing by default for security. Some older NAS devices and servers don’t support SMB signing — connections fail with “The cryptographic operation failed” or similar errors. Check the NAS documentation for SMB signing support. Modern NAS firmware versions typically support it; older firmware may need updating.

If updating the NAS isn’t possible: Administrator Command Prompt → Set-SmbClientConfiguration -RequireSecuritySignature $false in PowerShell (reduces security but restores connectivity with non-signing servers). Understand this removes a security protection before applying it.

UNC path access vs mapped drive

Understanding the two ways to access network shares helps diagnose problems:

  • UNC path (\servershare): direct access, no drive letter, works for one-off access. Can access even if drive mapping fails
  • Mapped drive (Z:): persistent connection with a drive letter, appears in File Explorer as a local drive. Requires successful mapping on login

If UNC path works but mapped drive doesn’t: the mapping process itself has an issue (credential storage, drive letter conflict, Group Policy). If neither works: server connectivity or authentication is the issue.

Drive letter conflicts

If a drive letter is already assigned to another device (USB drive, optical drive) when Windows tries to reconnect a network drive on login: the reconnection fails silently. The drive letter conflict prevents the network drive from mounting.

Change the network drive’s letter to one not likely to be used by removable media (X:, Y:, Z: are typical choices for network drives since they’re far from the alphabet letters Windows assigns to physical drives). Right-click the mapped drive → Disconnect → This PC → Map network drive → select a new letter → reconnect.

Firewall blocking SMB ports

SMB uses TCP ports 445 (direct SMB) and 139 (NetBIOS over TCP/IP). Third-party firewalls sometimes block outbound connections to these ports, preventing network drive connections. Windows Firewall allows these by default for “Private” network profile. Check: Windows Security → Firewall → Advanced settings → Outbound rules → look for any rule blocking TCP 445 or 139 to the NAS IP range.

Error / symptom Cause Fix
Red X on drive, reconnects manually Credential mismatch or network timing Clear Credential Manager; add startup delay script
“Network path not found” Server unreachable, DNS failure, or SMB mismatch Test UNC path; check SMB version; map by IP
Works initially, disappears after restart Network not ready when drives reconnect Startup delay script; Group Policy drive mapping
Old Windows can connect, Win11 can’t SMB1 deprecation or SMB signing requirement Update NAS firmware; enable SMB2+; check signing
UNC works, mapped drive doesn’t Credential storage or drive letter conflict Clear and re-enter credentials; change drive letter

The Credential Manager check (Fix 2) resolves the majority of network drive failures that started after a password change or NAS update — it’s the single most productive first step after confirming the server is actually reachable. The SMB version issue is the most common cause of drives that worked in Windows 10 but stopped working after Windows 11 upgrade. Addressing these two causes covers roughly 80% of network drive connectivity failures in home and small office environments.

For IT teams managing network drives at scale: the Group Policy Preferences drive mapping approach (rather than login scripts) provides centralised management, error handling, and reporting. Drives mapped through GP Preferences reconnect correctly after password changes (when the domain password is updated): GP Preferences automatically re-authenticate with the new domain credentials without requiring manual Credential Manager cleanup on each machine. This is the enterprise solution to the manual Credential Manager problem that individual users face when passwords change.

NAS power settings

Some NAS devices have aggressive power saving that puts hard drives into standby after periods of inactivity. When the NAS drive spins up: the initial reconnection after idle can take 5-15 seconds, during which the mapped drive appears disconnected. Windows may show an error during this spin-up period even though the connection will succeed once the NAS is ready.

If the drive shows “disconnected” briefly then reconnects after a wait: NAS spin-up delay is the cause. Configure the NAS to keep drives active during expected working hours, or adjust the spin-down timeout to a longer period. Most NAS web interfaces have this under “Storage Manager” or “Power Settings.”

Windows 11 and workgroup vs domain differences

Authentication to network shares works differently depending on whether machines are in a Windows domain or a simple workgroup. In a workgroup: each machine maintains its own user account database — connecting to a share on another machine requires an account that exists on that machine specifically. In a domain: domain accounts work across all domain machines and the domain controller handles authentication.

If connecting a Windows 11 machine to a share on a NAS or old Windows PC in a workgroup: ensure the username and password match an account on the target machine exactly (including case). The common mistake: using the Windows 11 login Microsoft account for the credentials instead of a local account that matches what the NAS or target machine has configured.

For home NAS setups using Synology, QNAP, or similar: the most reliable long-term configuration is to enable both SMB2 and SMB3 on the NAS, disable SMB1, enable SMB signing, assign a static IP, and map Windows drives by IP rather than hostname. This combination sidesteps the three most common failure modes (SMB protocol mismatch, hostname resolution failures, and IP address changes) simultaneously. Setting it up correctly once eliminates most future connectivity troubleshooting.

Testing network drive connectivity with PowerShell provides more detailed error information than File Explorer’s generic “The network path was not found” message:

Test-Path \server-nameshare-name
# Or with explicit credentials:
$cred = Get-Credential
New-PSDrive -Name "Z" -PSProvider FileSystem -Root "\server-nameshare-name" -Credential $cred

These commands provide specific error messages (credential failure, network unreachable, path not found) that immediately identify the failure type — much more actionable than Windows’ generic error codes in File Explorer. The Test-Path command is the quickest connectivity check; New-PSDrive with explicit credentials tests whether authentication is the failure point.

Event Viewer for network drive failures

When a network drive fails to reconnect at login: Event Viewer → Windows Logs → Application → look for events from source “MrxSmb” (SMB redirector) or “Disk” around the login timestamp. SMB errors include specific error codes that identify protocol, authentication, or connectivity failures more precisely than the GUI error messages. This log review takes 2 minutes and often provides the exact technical reason for the failure, directing the fix without requiring trial-and-error through the various possible causes. You might also run into VPN Not Connecting.

Network drive connectivity in Windows 11 is more demanding than previous versions in specific areas — SMB signing enforcement, SMB1 deprecation, and guest access blocking were all tightened for security. These changes break connections that worked in Windows 10 but they’re security improvements, not regressions. The correct path is updating the NAS firmware and server configuration to modern SMB standards rather than weakening Windows 11’s security posture through workarounds. Most modern NAS firmware (from 2020+) fully supports Windows 11’s requirements without any compatibility mode needed. Related: Windows 11 WiFi Not Connecting After Sleep.

Nikolas Lamprou

Nikolas Lamprou (MSc; GCFR, SC-200, Security+) has been working with computers professionally since 2009 — starting with web development and e-commerce, and moving into cybersecurity over the years. Based in Greece, he brings over 15 years of real-world IT experience to SolveTechToday, where he writes about Windows fixes, software reviews, security tools, and AI applications. His goal is straightforward: cut through the noise and give readers clear, honest guidance on the tech decisions that matter.

Stay Ahead

Fix your next problem before it starts

Get the week's best Windows fixes, software picks, and security guides delivered straight to your inbox. No noise, just solutions.

Press ESC to close · Try "Windows 11" or "Chrome"