Follow
Windows

How to Map Network Drives in Windows 11

Richard
Written by
Richard
Aug 6, 2021 Updated Apr 28, 2026 3 min read
How to Map Network Drives in Windows 11

If you work in an office or use multiple computers, you likely share files over a network. Mapping a network drive makes these files show up just like a USB stick or hard drive on your computer. This makes them much easier to find and open.

Why map a network drive?

Mapping a drive assigns a specific letter to a network folder. Instead of searching for it every time, you can just click your “Z” drive to jump straight to your files. It saves time and keeps your work organized. By using the SMB protocol, your computer maintains a persistent connection to the server.

What happens when you are done?

Once you finish these steps, a new drive will appear in your “This PC” folder. You can open, edit, and save files in that folder just as if they were stored on your own computer. The system will remember this path and attempt to reconnect at sign-in.

Usually, we find network files by typing a UNC path into File Explorer like this:

💻Code
\\192.168.1.50\SharedFolder
Windows 11 File Explorer showing the network folder sharing options menu

Avoid just dragging a shortcut to your desktop. Using the mapping tool is much more reliable for long-term access.

Comparison: GUI vs. Command Line

MethodEase of UseBest For
File Explorer (GUI)HighCasual users
Command Prompt (CLI)MediumPower users and IT admins

How to map your drive using File Explorer

  1. Open File Explorer.
  2. Click the three-dot icon (…) in the top menu bar.
  3. Select Map network drive.
Map network drive dialog box in Windows 11 for selecting folders
  1. Pick a letter for your drive from the list. It is often best to pick a letter further down the alphabet to avoid conflicts with USB drives.
  2. In the Folder box, type the path to your network folder. You can also click Browse to find it manually.
  3. If your network requires a different login than your computer, check the box that says Connect using different credentials. Note: This step may require admin privileges depending on your company’s network security policies.
Configuring drive letter and folder path to map network drive
  1. Click Finish.
Mapped network drive appearing in the Windows 11 This PC folder

How to map a network drive using Command Prompt

You can use the net use command to map drives quickly. Open Command Prompt and type the following command:

💻Code
net use Z: \\192.168.1.50\SharedFolder /persistent:yes

Replace Z: with your desired letter and the path with your specific server address.

Troubleshooting Connectivity

If you cannot see the folder, ensure Network Discovery is turned on in your Advanced sharing settings. If you need to manage saved passwords, search for Credentials Manager in the Start menu to update or remove stored login information. For more on security, see official Microsoft SMB security best practices.

Summary

  • Mapping creates a permanent link to a network folder using a drive letter.
  • It is faster and more stable than making a desktop shortcut.
  • Always choose a unique drive letter to avoid conflicts with other devices.
  • If you have trouble connecting, ensure your network discovery settings are turned on.

Why does my mapped network drive show a red X?

A red X usually means your computer cannot reach the server. This happens if the device is offline, your network discovery settings are disabled, or you are not connected to the correct network. Check your internet connection and ensure the server is powered on and accessible.

How do I disconnect a mapped network drive in Windows 11?

To disconnect, open File Explorer and go to This PC. Right-click the mapped drive and select Disconnect. Alternatively, use the command prompt by typing ‘net use Z: /delete’ and pressing Enter. This removes the drive mapping from your current user profile permanently.

Was this guide helpful?

Tags: #Windows 11
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

2471 articles → Twitter

📚 Related Tutorials

How to Map Network Drives with PowerShell in Windows 11
Windows How to Map Network Drives with PowerShell in Windows 11
How to Enable Checkboxes in Windows 11 File Explorer
Windows How to Enable Checkboxes in Windows 11 File Explorer
How to Remove Home Folder from Windows 11 File Explorer
Windows How to Remove Home Folder from Windows 11 File Explorer
How to Use Favorites in Windows 11 File Explorer
Windows How to Use Favorites in Windows 11 File Explorer

10 responses to “How to Map Network Drives in Windows 11”

Leave a Reply

Your email address will not be published. Required fields are marked *