Slow File Transfer Over the Network

Copying to a network share, NAS, or server is painfully slow? Work through these steps in order — duplex mismatches (step 2) are the most common hidden cause.

Advertisement · 728×90
📁

Slow File Transfer Over the Network

Copying to a network share, NAS, or server is painfully slow

⚠ Common symptoms

  • Copying a 1 GB file to a network drive takes many minutes instead of seconds
  • Transfer speeds fluctuate wildly — fast then suddenly stalls
  • Copying locally (same PC) is instant, but network copies are slow
  • Speeds are worse on Wi-Fi than when wired
  • 1

    Switch to a wired Ethernet connection

    File transfers over Wi-Fi are limited by signal quality, interference, and protocol overhead. A gigabit Ethernet cable should transfer files at 100–115 MB/s. If your wired speeds are also slow, the issue is elsewhere — keep going through these steps.

  • 2

    Check for a duplex mismatch on your network adapter

    Open Device Manager → Network Adapters, right-click your Ethernet adapter, choose Properties → Advanced tab, and find the Speed & Duplex setting. Set it to 1.0 Gbps Full Duplex explicitly (rather than Auto Negotiate). A duplex mismatch between your adapter and switch causes severely degraded throughput.

  • 3

    Check for background processes consuming disk or network I/O

    Open Task Manager → Performance → Disk and Network tabs. If either is near 100% during the transfer, a background app (antivirus scanning transferred files, backup software, Windows Update) is competing for the same resource. Pause the competing process and retest.

  • 4

    Disable SMB1 and ensure SMB3 is in use

    If you're transferring to a Windows file share, the old SMB version 1 protocol is dramatically slower and less secure than SMB3. Run this in an elevated PowerShell to check and disable SMB1:

    # Check SMB1 status
    Get-SmbServerConfiguration | Select EnableSMB1Protocol

    # Disable SMB1 if enabled
    Set-SmbServerConfiguration -EnableSMB1Protocol $false
  • 5

    Inspect the physical cable and switch port

    A damaged Cat5e or Cat6 cable can auto-negotiate down to 100 Mbps instead of 1000 Mbps, capping your transfer at 12 MB/s. Try a different cable and a different port on the network switch. Check the adapter indicator light — a solid orange/amber usually means 100 Mbps; green means gigabit.

💡

Quick test: Copy the same file locally between two folders on your PC first. If that's also slow, the bottleneck is your disk, not the network — check for a failing drive or a near-full SSD before blaming the network.

Advertisement · 728×90

Related Questions

Quick answers for this issue

First, switch to a wired Ethernet connection if you're on Wi-Fi. Then check your Ethernet adapter settings in Device Manager — set Speed & Duplex to 1.0 Gbps Full Duplex explicitly. Also check that SMB1 is disabled on the server (use SMB3 instead — it's significantly faster). Finally, check Task Manager for antivirus or backup software scanning files in real time during the transfer, which can cut throughput by 80%.
Internet speed tests measure your connection to the public internet. File transfers to a local network drive or NAS depend entirely on your local network's wired/Wi-Fi speed, duplex settings, and the SMB protocol version — these are independent of your internet speed. See our Slow Network guide if your general internet is also slow.
This pattern is typical of a write cache filling up on the destination drive (common with USB external drives and some NAS units) — the initial burst is fast RAM-cache speed, then it drops to the drive's real sustained write speed. It can also indicate thermal throttling on the NIC during sustained transfers. Try a smaller test file first to compare burst vs. sustained speed.
🧑‍💻

Transfers still slow after trying all five steps?

Connect with a verified IT technician for remote or on-site support — they can check switch configuration, cabling, and server-side SMB settings that may need network-level access.

Talk to a Technician

Slow transfers often overlap with these.

Advertisement · 728×90