# How to Fix Slow File Transfer Speeds in Windows 11 URL: https://www.mytechnician.tech/tips/fix-slow-file-transfer-speed-windows-11/ Published: 2026-07-26 | Author: Ankit Kumar Tags: Windows 11, Performance, Storage, Files, Fix Summary: Copying files at a crawl or the transfer speed dropping to zero? Fix USB, network, and drive bottlenecks slowing Windows 11 file copies with these step-by-step fixes. Recommended app: Network Traffic Monitor & Analyzer — https://www.mytechnician.tech/apps/network-monitor/ (Microsoft Store: https://apps.microsoft.com/detail/9NGCWN2BKVSC?hl=en-us&cid=mytechnician-web). Optional; every step below uses built-in Windows tools. ## The Problem A copy that should take two minutes takes forty. The progress dialog starts fast, collapses to a few MB/s, or stalls at **0 bytes/sec** before crawling on. There are only four places the time goes: the **source drive**, the **destination drive**, the **link between them** (USB port, cable, or network), and **software sitting in the middle** (antivirus, indexing, encryption). Work through them in that order. > **Copying over a network share?** Also read [share files between Windows PCs](https://www.mytechnician.tech/tips/share-files-between-windows-pcs-same-network/). **Drive is slow at everything, not just copies?** See [fix slow SSD speeds](https://www.mytechnician.tech/tips/fix-slow-ssd-speeds-windows-11/). ## Symptoms * Transfer speed starts at 300 MB/s then drops to 10 MB/s and stays there. * Progress bar freezes on **Calculating** or **0 bytes/sec** for minutes. * Small files crawl while one large file copies fine — or the reverse. ## Step 1: Establish What Speed to Expect Knowing the ceiling stops you chasing a problem that does not exist. Realistic sustained speeds: * **USB 2.0** port or cable — 30-40 MB/s * **USB 3.0 / 3.2 Gen 1** — 100-400 MB/s * **USB 3.2 Gen 2 / USB-C** — 500-1000 MB/s * **Gigabit Ethernet** — 100-115 MB/s * **Wi-Fi 5** — 30-70 MB/s * **Wi-Fi 6/6E** — 100-300 MB/s * **SATA SSD** — around 500 MB/s * **NVMe SSD** — 1500-7000 MB/s * **Mechanical hard drive** — 80-160 MB/s Also expect **many small files to be far slower than one big file** of the same total size. That is normal filesystem overhead, not a fault. ## Step 2: Check the Weakest Link 1. A blue plastic tongue inside the USB port means USB 3.x; black means USB 2.0. Move the drive to a **blue rear port**. 2. Use the **cable that shipped with the drive**. Old micro-USB and charge-only USB-C cables cap you at USB 2.0 speeds. 3. Remove hubs and docks — plug directly into the PC. 4. Right-click Start → **Device Manager** → **Disk drives** → your device → **Properties** → **Details** → **Bus reported device description** to confirm what it negotiated. ## Step 3: Rule Out a Failing Drive A slow drive is often a dying drive. 1. Open **Terminal (Admin)** and run: ``` wmic diskdrive get model,status ``` 2. Then check for filesystem damage on the drive in question: ``` chkdsk D: /f ``` Replace `D:` with the correct letter. 3. Read the SMART data properly: [check SSD and hard drive health](https://www.mytechnician.tech/tips/check-ssd-hard-drive-health-windows-11/). 4. On an external mechanical drive, a rhythmic clicking means stop copying and get the data off immediately: [recover deleted files](https://www.mytechnician.tech/tips/how-to-recover-deleted-files-windows/). ## Step 4: Exclude the Folders from Real-Time Scanning Antivirus inspects every file as it lands. On a copy of thousands of small files this dominates the transfer time. 1. **Windows Security** → **Virus & threat protection** → **Manage settings**. 2. Scroll to **Exclusions** → **Add or remove exclusions** → **Add an exclusion** → **Folder**. 3. Add the destination folder temporarily for a large transfer. 4. **Remove the exclusion afterwards.** An excluded folder is not scanned at all. 5. Third-party suites are usually worse than Defender here — test with the suite paused. ## Step 5: Stop the Indexer Following Your Copy 1. Right-click the destination drive in **File Explorer** → **Properties**. 2. Untick **Allow files on this drive to have contents indexed in addition to file properties**. 3. Apply to the drive, subfolders, and files. Ignore any access-denied warnings on system files. 4. On external and backup drives there is rarely any reason to index at all. ## Step 6: Check Write Caching and the Removal Policy 1. Right-click Start → **Device Manager** → **Disk drives**. 2. Right-click the drive → **Properties** → **Policies** tab. 3. Choose **Better performance** and tick **Enable write caching on the device**. 4. This makes **Safely Remove Hardware mandatory** before unplugging — do not skip it or you will corrupt data. ## Step 7: Fix Slow Network Transfers 1. Prefer **Ethernet** over Wi-Fi for large copies; even Wi-Fi 6 is inconsistent under load. 2. In **Device Manager** → **Network adapters** → your adapter → **Properties** → **Advanced**, set **Speed & Duplex** to **1.0 Gbps Full Duplex** rather than **Auto Negotiation** if the link keeps dropping to 100 Mbps. 3. On the **Power Management** tab, untick **Allow the computer to turn off this device to save power**. 4. Replace old Cat5 patch cables with Cat5e or Cat6 — a damaged cable silently negotiates 100 Mbps. 5. Related: [fix slow Wi-Fi speeds](https://www.mytechnician.tech/tips/fix-slow-wifi-speeds-windows-11/) and [speed up a slow internet connection](https://www.mytechnician.tech/tips/speed-up-slow-internet-connection-windows-11/). ## Step 8: Reduce the Overhead for Many Small Files 1. **Zip the folder first**, copy one archive, and extract at the other end. This is often five to ten times faster. 2. For repeated transfers, use `robocopy` from **Terminal**: ``` robocopy C:\Source D:\Destination /E /J /R:1 /W:1 ``` `/E` includes subfolders, `/J` uses unbuffered I/O for large files, `/R:1 /W:1` stops it retrying dead files for 30 seconds each. ## Step 9: Check the Filesystem on the Target 1. Right-click the destination drive → **Properties** and read the **File system**. 2. **FAT32** cannot store files over 4 GB and is slow with large ones — reformat to **NTFS** or **exFAT** if the drive is empty or backed up. 3. Reformatting erases the drive. Procedure: [partition and format a drive in Windows 11](https://www.mytechnician.tech/tips/partition-format-hard-drive-windows-11/). ## What Not to Do * **Don't unplug an external drive mid-transfer**, even when it appears stalled. Cancel, wait for the drive light to settle, then eject properly. * **Don't disable antivirus entirely.** Exclude a folder for the duration instead. * **Don't trust the first ten seconds** of the progress dialog — that is cache, not sustained speed. ## Still Not Working? If a healthy drive on a good cable in a rear USB 3 port still crawls, test the same drive on another PC. Slow there too means the drive; fast there means the PC's USB controller or chipset driver — reinstall it from the manufacturer's site and see [fix USB device not recognized](https://www.mytechnician.tech/tips/fix-usb-device-not-recognized-windows-11/). Related: [transfer files from an old PC to a new PC](https://www.mytechnician.tech/tips/transfer-files-from-old-pc-to-new-pc/) and [set up automatic backups](https://www.mytechnician.tech/tips/set-up-automatic-backups/). --- Source: https://www.mytechnician.tech/tips/fix-slow-file-transfer-speed-windows-11/ — My Technician, free Windows 10/11 troubleshooting guides. Related tool: Network Traffic Monitor & Analyzer (Network Traffic Monitor & Analyzer shows real-time bandwidth usage, active connections, and per-app network traffic on Windows 10 and 11.) — https://www.mytechnician.tech/apps/network-monitor/ More guides: https://www.mytechnician.tech/llms.txt