How to create a network drive in Windows 10 via Wi-Fi: a complete guide with all the details

Network drive via Wi-Fi in Windows 10 - This is a convenient way to access files from another computer, NAS- a storage device or even a smartphone without unnecessary wires. However, many users encounter problems: the drive doesn't show up, requires a password, or the data transfer speed leaves much to be desired. In this article, we'll cover not only the standard connection procedure, but also Hidden router settings that speed up network drive performance by 30-50%.

It's important to understand that a network drive over Wi-Fi is slower than over a cable, but with proper configuration, the difference will be minimal. We'll look at two scenarios: connecting to another PC on the local network and accessing folders on NAS-server (for example, Synology or WD My Cloud). If you use Windows 11, most of the instructions will remain relevant - the differences are minimal.

Before you begin, make sure all devices are connected to the same Wi-Fi network. If you have a dual-band router (2.4 and 5 GHz), it's best to use 5 GHz - it provides a more stable connection for file transfer. Also, check that the target device (computer or NAS) folder sharing is enabled.

1. Preparing devices: what needs to be done before setup

Before creating a network drive, you need to complete several mandatory steps. Skipping them can result in errors like "Network path not found" or "Access denied."

First, make sure that both computers (if you are connecting to another PC) have the feature enabled. network discoveryTo do this:

  1. Open Control Panel → Network and Internet → Network and Sharing Center.
  2. Select on the left Change advanced sharing options.
  3. Turn on network discovery And file and printer sharing for the current profile (private or guest network).

Secondly, check that the target device (where the files are stored) has a user with a password. Windows 10 requires authorization to access network resources, even if you connect from the same computer under a different account. If you don't have a password, set one in Settings → Accounts → Sign-in options.

📊 What device are you connecting as a network drive?
Another computer with Windows
NAS server (Synology, QNAP, etc.)
MacBook or Linux PC
Smartphone or tablet

2. Set up shared access to the folder on the target device

Now let's move on to the main part—opening access to the folder you want to make a network drive. This process differs depending on whether you're connecting to another computer or NAS-server.

If the target device is - computer with Windows 10/11:

  1. Find the folder you want to share, right-click on it and select Properties → Access → Share.
  2. From the drop-down list, select a user (for example, All or a specific account) and click Add.
  3. Set permission level: Reading (view only) or Reading and writing (full access).
  4. Click Share, then go to the tab Security and add the same user with the required rights.

For NAS-servers (for example, Synology DS220+ or QNAP TS-251):

  • 📁 Log in to the web interface NAS (usually at the address http://[IP address]).
  • 🔧 Go to the section Control Panel → Shared Folder and create a new one or select an existing one.
  • 👥 In the folder settings, specify users (or a group) Everyone) and set permissions (read/write or read-only).
  • 🌐 Enable protocol SMB (usually in the section File services or Win/Mac/NFS).

- Devices on the same Wi-Fi network

- Network discovery is enabled

- The folder is shared with the correct permissions

- There is a user with a password on the target PC

- SMB traffic (port 445) is not blocked on the router.

-->

⚠️ Attention: If you use guest access (without password), some versions Windows 10 may block such connections by default. In this case, you'll need to edit the registry or disable protection in the local security policy.

3. Mapping a Network Drive in Windows 10: Step-by-Step Instructions

Once the folder is shared, you can start connecting. There are two ways: via Conductor or using the command net use V CMDWe will analyze both.

Method 1: Via Explorer (graphical interface)

  1. Open This computer and press Map a network drive on the tab Computer.
  2. Select a drive letter (eg. Z:).
  3. In the field Folder Enter the path in the format:
    \\[IP address or PC name]\[folder name]

    Example: \\192.168.1.100\Documents or \\NAS-Synology\Photos.

  4. Check the box Restore on login, if you want automatic connection.
  5. Click Ready and enter your login/password when prompted.

Method 2: Via the command line (for advanced users)

This method is useful if you need to connect a drive with non-standard parameters (for example, with a different port SMB). Open CMD as administrator and run:

net use Z: \\192.168.1.100\SharedFolder /persistent:yes /user:PCName\User Password

Where:

  • Z: — drive letter;
  • 192.168.1.100 — IP address of the target device;
  • SharedFolder — name of the shared folder;
  • /persistent:yes - connect automatically at startup;
  • PCName\User - account (can be used localhost\Name for a local user).

4. Solving common connection errors

Even with proper setup, problems can still arise. Let's look at the most common errors and how to fix them.

Error Possible cause Solution
The network path was not found. Invalid address or device is disabled Check the IP address of the target device (command ping 192.168.1.100)
Access denied Incorrect access rights or password Check the permissions in the folder properties and the correct login/password
Unable to connect to network drive Port blocking 445 (SMB) on a router or firewall Open the port 445 in the router settings and temporarily disable the firewall
The drive is connected, but the files are not displayed. Problems with the protocol SMB (For example, SMB1 disabled) Turn on SMB 1.0 V Control Panel → Programs → Turn Windows features on or off

Particular attention should be paid to the settings routerSome models (for example, TP-Link Archer C6 or ASUS RT-AX88U) by default block local traffic between devices on the network (Client Isolation). To fix this:

  1. Go to the router's web interface (usually 192.168.0.1 or 192.168.1.1).
  2. Find the section Wireless → Advanced or LAN → AP Isolation.
  3. Disable the option AP Isolation or Client Isolation.
  4. Save the settings and reboot the router.
⚠️ Attention: If you use guest network On the router, devices in it are isolated from the main network by default. Connect all devices to the main Wi-Fi network.

5. Optimize network drive speed over Wi-Fi

The speed of a network drive via Wi-Fi depends on many factors: the Wi-Fi standard, network load, settings NAS or computer. Here are some ways to speed up file transfers:

  • 📶 Use Wi-Fi 6 (802.11ax) or at least Wi-Fi 5 (802.11ac). Old standards (802.11n) limit the speed to 150-300 Mbit/s.
  • 🔄 Switch to range 5 GHz - it is less congested and provides greater throughput.
  • 🖥️ On the target device (PC or NAS) turn it off indexing for a shared folder if it contains large files (videos, disk images).
  • 🔌 Connect the target device (e.g. NAS) to the router via cable - This will eliminate the Wi-Fi bottleneck.
  • 🔧 In the settings NAS turn on Jumbo Frames (if supported) and install MTU=9000.

If you are transferring large files (for example, videos in 4K), consider using the protocol NFS instead of SMBIt's less resource-intensive and runs faster on local networks. To do this:

  1. On NAS enable the service NFS and add an access rule for your IP address.
  2. IN Windows 10 install NFS Client through Control Panel → Programs → Turn Windows features on or off.
  3. Connect the disk with the command:
    mount -o anon \\192.168.1.100\NFS_Share Z:
How to check the actual speed of a network drive?

Copy a large file (1-2 GB) to a network drive and back, timing the process. Then use the following formula:

Speed ​​(MB/s) = File size (MB) / Time (seconds).

For example, a 1 GB (1024 MB) file was copied in 30 seconds: 1024 / 30 ≈ 34 MB/s.

For comparison: by cable Gigabit Ethernet the speed should be 80-100 MB/s, and via Wi-Fi 5 GHz — 20-50 MB/s.

6. Automatically connect a network drive when Windows starts

To avoid manually mounting the drive each time you turn on your computer, set up automatic mounting. To do this:

Method 1: Via connection settings

When connecting the disk via Conductor (as described in Section 3) check the box Restore on loginHowever, this method does not always work reliably, especially if Wi-Fi is connected after the system has booted.

Method 2: Using the Task Scheduler (more reliable)

  1. Open Task Scheduler (taskschd.msc).
  2. Create a new task (Create task...).
  3. On the tab Triggers add a trigger When you log in.
  4. On the tab Actions select Run the program and enter:
    net use Z: \\192.168.1.100\SharedFolder /persistent:yes

    (replace the parameters with your own).

  5. On the tab Conditions uncheck the box Run only when powered from the mains (if you are using a laptop).
  6. Save the task and restart your PC to check.

Method 3: Using a startup script

Create a text file map_drive.bat with the following contents:

@echo off

timeout /t 10 >nul

net use Z: \\192.168.1.100\SharedFolder /persistent:yes

exit

Place it in your startup folder (C:\Users\UserName\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup). Parameter timeout /t 10 Adds a 10 second delay to allow Wi-Fi to connect.

7. Security: How to protect a network drive from unauthorized access

By sharing folders over the network, you potentially expose your data to risk. Here are some tips for protecting it:

  • 🔐 Use complex passwords for accounts (at least 12 characters with numbers and special characters).
  • 🌐 Turn it off Guest access in the sharing settings (Control Panel → Administrative Tools → Local Security Policy → Network Access: Sharing and Security Model).
  • 🛡️ Configure it on your router isolation of clients for a guest network if it is not used for public access.
  • 🔄 Update your firmware regularly NAS And router - this closes the vulnerabilities.
  • 📡 If possible, use VPN for remote access instead of directly opening ports.

For additional protection, you can enable SMB encryption (if supported):

  1. Open Control Panel → Administrative Tools → Local Security Policy.
  2. Go to Local Policies → Security Options.
  3. Find the parameter Network Access: Encryption Level for SMB Clients and install Encryption required.

If you are connecting to a network drive from public network (for example, in a cafe), use VPN or SSH tunnelNever open ports. SMB (445) directly to the Internet is one of the most popular targets for attacks.

⚠️ Attention: If the target computer is enabled BitLocker, network access to encrypted folders will be impossible without first unlocking the drive. In this case, either disable BitLocker for a shared folder, or use NAS with hardware encryption.

8. Alternative ways to access files via Wi-Fi

If your network drive is unstable or you need additional features (such as access from a phone), consider alternative solutions:

Method Pros Cons Example software
FTP server Works on any device, easy to set up No encryption by default, slower SMB FileZilla Server, vsftpd
WebDAV Built in Windows, supports HTTPS More difficult to configure, high CPU load Built in Windows or Apache
Cloud services Access from anywhere in the world, backup Speed ​​limits, paid tariffs Google Drive, Dropbox, Yandex Disk
Syncthing No servers, encrypted, cross-platform Requires configuration on each device Syncthing (for free)

To access from Android or iOS It's convenient to use applications like FX File Explorer (with support SMB) or Solid ExplorerThey allow you to connect to network folders just like on a PC.

If you need backup to a network drive, configure Scheduled tasks V Windows or use NAS-applications like Hyper Backup (For Synology). This automates the saving of important data without your intervention.

FAQ: Frequently Asked Questions about Network Drives in Windows 10

Why does my network drive disconnect after sleep or hibernation?

This is due to the fact that Windows Disconnects network connections when entering sleep mode. Solutions:

  • Turn it off energy savings for the network adapter in Device Manager.
  • Use the script in Task Scheduler, which reconnects the disk upon wake-up.
  • In the power settings, set Sleep → Never for tests.
Is it possible to map a network drive without a password?

Yes, but it's not safe. To do this:

  1. On the target PC, create a user with a blank password (not recommended).
  2. Or turn it on guest access in the local security policy (SecPol.msc → Local Policies → Security Settings → Network Access: Sharing Model).
  3. IN NAS set up anonymous access to the folder (option Guest Access).

⚠️ Warning: This setup allows any device on your network to access your files.

How to connect to a network drive from MacOS or Linux?

On MacOS:

  1. Open Finder → Go → Connect to Server (Cmd+K).
  2. Enter smb://192.168.1.100/SharedFolder.
  3. Please provide your login/password when prompted.

On Linux (Ubuntu/Debian):

sudo apt install cifs-utils

sudo mkdir /mnt/shared

sudo mount -t cifs //192.168.1.100/SharedFolder /mnt/shared -o username=name,password=password,vers=3.0

To mount automatically, add the line to /etc/fstab.

Why is the Wi-Fi copy speed low (1-2 MB/s)?

Possible causes and solutions:

  • Old Wi-Fi standard: Update your router to 802.11ac or 802.11ax.
  • Interference: Switch to the channel 5 GHz with less workload (use Wi-Fi Analyzer for analysis).
  • SMB limitations: Turn on SMB 3.0 in the registry:
    reg add HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters /v RequireSecureNegotiate /t REG_DWORD /d 0 /f
  • NAS settings: Turn it off Recycle Bin And Antivirus scanning for network folders.
How to disconnect a network drive if it is not needed?

Methods:

  • Through Conductor: Right-click on the disk → Disable.
  • Through CMD:
    net use Z: /delete
  • To remove all network drives:
    net use * /delete

If the drive does not disconnect (the "Device is busy" error appears), close all programs using files from this drive or restart your PC.