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.