Slow File Transfer in Windows 11: Causes, Diagnostics, and Real-World Solutions

Last update: 02/10/2025
Author Isaac
  • Robocopy and SMB compression solve common Explorer bottlenecks and optimize large volumes.
  • Performance depends on the storage: The network does not compensate for slow disks or write-through modes.
  • Versions 22H2/24H2 introduce changes (unbuffered I/O, SMB signing) that should be tuned carefully.

File transfer issues in Windows 11

When you work with lots of documents or move folders between disks, Few things are as frustrating as seeing the progress bar moving at a snail's pace.. In Windows 11 It is relatively common to notice that copies, whether between internal disks, to a USB or over the network, they are slower than they should be.

The good news is that there is a clear set of causes and solutions. With an orderly approach and some tools like Robocopy, SMB settings and good practices of hardware, you can significantly speed up file transfers and avoid those unnecessary “coffee breaks.”

Why transfers become slow and how to diagnose it

Before touching anything, it is key to isolate the bottleneck. Slowness can be caused by storage, network, client, or server, and it is advisable to discard in order.

If the folder is on a file server, try copying the file from the local disk to the server first. If it is slow there too, suspect the storage or its drivers. and update them; if performance is normal locally, the problem points to the client or the network.

In corporate environments with DFS paths, open the share properties. If it's DFS, try accessing it via its direct UNC path (not the DFS root) To see if the slowness is coming from the reference. Review the active references in the DFS tab, remove inactive targets, and verify that each target is directly accessible; If the client tests references that fail, it introduces delays.

Another useful clue: if the transfer starts quickly and then drops, it could be that the system has filled memory caches and, from there, data is written "through" directly to the disk, limiting the sustained speed at which the media can support. Tools like RAMMap (Sysinternals) let you see if the memory allocated to files stops growing, indicating that the buffer was exhausted.

Explorer vs. Robocopy: Why Does Speed ​​Change So Much?

File Explorer is handy, but makes copies with a single thread and buffered I/O, which limits it with large volumes or network latency. Robocopy (and Xcopy) are designed for just the opposite: high-performance tasks, local and remote.

If you are moving files larger than 1 GB over the network or to a slow disk, use unbuffered I/O with robocopy /J. Reduces file system overhead in large transfers and can greatly improve times.

For trees with thousands of elements, Robocopy also avoids unnecessary work: It compares the source and destination, does not copy what has not changed and can eliminate what is left over.. And if the problem is the latency of creating many files, activate multiprocessing with /MT and redirects the output to a log with /LOG so as not to waste time painting the console.

Do you use Azure? For moves to/from the cloud, AzCopy implements concurrency and optimizations specific ones that give better results than generic copies.

The Achilles heel: thousands of small files

With hundreds or thousands of sub-1 MB files, slowness is normal. Each file creation in SMB involves several protocol and cost operations on the file system.. Weather In total, it is “eaten” by the openings/closings and not the data.

Furthermore, Network latency and antivirus are paid for on a per-item basisThe result: With single-threaded tools, you can see rates below 1 MB/s even if your network is gigabit and your disk is fast.

  Blue screens in Windows 11 24H2 due to Intel SST drivers

Practical solutions: multiprocessing with robocopy /MT (default 8 threads, supports up to 128, test and adjust, two threads per core is usually a reasonable starting point); redirects output with /LOG to avoid the cost of painting on screen; or compress everything into a single ZIP/7z/TAR, transfer the large file and extract to local destination.

In the real world, cases like installing a mod with 30,000 files (e.g. a Total War mod) reproduce this pattern: copying loose one by one can take days. Grouping into a large compressed file or using multiple threads changes the picture radically.

SMB Optimization and Client Configuration

Windows 11 and Windows Server 2022 introduce useful improvements. SMB compression can speed up “fluffy” files a lot (with lots of white space), such as VM images (.vhd/.vhdx/.vmdk/.ovf), .iso o .dmp. Don't expect miracles with already compressed data (ZIP/7z/RAR), video (.mp4/.mkv) or audio (.mp3/.flac).

Check that SMB Multichannel is enabled, especially on SMB3 clients, and do not disable the downloads network (RSS, LSO, RSC, TCP/UDP checksums). SMB performance goes hand in hand with network stack performance and these offloads reduce CPU usage and improve throughput.

On the client, run as a reference: Set-SmbClientConfiguration -EnableBandwidthThrottling 0 -EnableLargeMtu 1. With Large MTU the stack can take advantage of large frames and by disabling throttling you avoid artificial limits of the SMB client.

If you need extreme speeds with low CPU, SMB Direct (RDMA) may be necessary. However, it requires compatible adapters on both ends and proper switch configuration, It is not a “magic” setting that activates itself.

Don't forget your antivirus: Temporarily disable file scanning and network/file system filters to test. Many engines intercept each operation and its added latency is especially noticeable with small files.

When it starts fast and drags on afterwards

It is a classic pattern: the system first writes to cache in RAM And while there's space, it seems to "fly by." When it's full, the writing process is switched to the disk in write-through mode, and the speed drops to what the media can actually handle.

Monitor with Performance Monitor and disk/network counters to confirm if The network failure accompanies the storage subsystem failureIf so, the solution isn't the network, but rather improving storage or adjusting the load.

You depend on storage: real-world limits

Whether the network is 1, 10 or 100 Gbps, Your storage must support appropriate rates. For typical benchmarks with SMB and no other bottlenecks: ~110 MB/s sustained at 1 Gbps; ~1,1 GB/s at 10 Gbps; ~11 GB/s at 100 Gbps.

Be careful not to confuse peaks with sharps: Leaflets usually give maximum throughput, not the flat rate at which your system can write without pausing. Backups, databases or SoFS clusters require write-through for integrity and skip caches, If the subsystem is not up to par, there will be no magic that will compensate for it..

Windows 11 22H2 and 24H2: Performance Issues

Microsoft acknowledged that in version 22H2, Copying large files (several GB) may be slower than expected, especially over SMB, and even on some local copies. Users have reported 40% degradation and duplicate times, although the impact varies depending on the team and scenario.

Practical solutions in 22H2: use Robocopy or Xcopy with /J (unbuffered I/O); consider compress before transferring; as a last resort, temporarily revert to the previous build If you're within the rollback window and the problem is critical, some recommend tools like EaseUS Todo PCTrans to move data and programs. useful in migrations between PCs with wizards and large file cleanup.

  How to install Gmail on Windows 11 step by step

With 24H2, many devices activate by default the security firm SMB, which can reduce performance on home networks or with NAS that do not accelerate signing. Some users have recovered speed with Set-SmbClientConfiguration -RequireSecuritySignature $false, but disabling the signature reduces security. Evaluate it only in trusted environments and document the change.

Quick local improvements: USB, disks and Explorer

If you are going to use external drives, always connect to USB 3.x ports (blue) and avoid overloaded hubs. The difference with USB 2.0 is huge in transfer speeds.

Update the USB bus controllers from the Device administrator and on the external drive, open Properties > Policies and Branding Better performance. Remember to always eject safely to avoid corruption.

About the format, NTFS It usually performs better and offers permissions, large files, and journaling. Some guides suggest “converting from FAT32 to NTFS” with convert F: /fs:ntfs. The CONVERT utility converts in-place without erasing data (even so, make a copy for prudence). For maximum speed and robustness of the system, consider migrate from HDD to SSD (SATA or, if budget allows, NVMe), you will notice the difference in backups and across the entire system.

During weight training sessions, close apps you're not using. Background programs consume CPU, RAM and disk I/O, slowing down both Explorer and any other tool.

disable the Indexing on a specific drive (Properties > General > uncheck “Allow files to…”) may help on very slow or full drives. You gain some performance at the cost of slower searches..

Advanced network settings that make a difference

In some environments, the QoS scheduler may reserve bandwidth. Check the “Limit reservable bandwidth” policy in Group Policy (gpedit.msc). and adjust it if necessary to avoid unnecessary stops.

Automatic TCP tuning may crash on intermediate equipment. Try temporarily using a privileged console: netsh int tcp set global autotuninglevel=disabled; if it doesn't improve, go back autotuninglevel=normal. Always check the actual effect with and without the change.

The “Remote Differential Compression (RDC) API Support” feature can be disabled in “Turn Windows features on or off.” It is not usually critical for most people. and some users report occasional improvements by disabling it.

If you copy over the network and notice anomalies, please also check Jumbo and LSO frames (“Large Send Offload”) against computers that do perform well, and aligns the configuration. Enable where it's necessary, disable where it causes problems, and A/B testing.

On computers with third-party network clients, clean up third-party network providers and leaves only the default ones in the registry order: RDPNP, LanmanWorkstation, webclient in the keys HKLM\SYSTEM\CurrentControlSet\Control\NetworkProvider\HwOrder y ...\Order. Fewer intermediaries, less friction.

It seems obvious, but check it out: the Workstation service active and the Client for Microsoft networks marked in the adapter properties. Without that, SMB won't fly even if it wanted to..

Office documents that take a long time to open over the network

On WANs or networks with latency, Excel and company can be slow because of how they access data. Updating Office and SMB is the first stepIf it persists, try disabling leasing on the server: Set-SmbServerConfiguration -EnableLeasing $false, or by share on Server 2019+: Set-SmbShare -Name <ShareName> -LeasingMode Shared|None.

The change takes effect on new SMB connections without a restart. Alternatively, replicates the file to a server local to the user to avoid round-trip latency on each operation.

  Windows 11 25H2: Fast, better-supported, packaged update

Good operating practices to avoid surprises

Check for network errors (packet loss) because TCP self-limits due to congestionA handful of losses on a noisy link can severely knock down the effective rate.

For copies with many gigabytes, redirects Robocopy output to a log. Writing each line to the screen is difficult; the log not only speeds up, but also leaves a trace to diagnose where it slowed down.

If you use DFS, allocate correctly subnets to sites in Active DirectoryOtherwise, you could be jumping to a remote DFS server while having a local one, with the latency and toll that entails.

In IPv6 environments, it also defines IPv6 subnets in Sites and ServicesAs a temporary alternative, and for testing purposes only, disabling IPv6 can help rule out routing issues or incorrect route preference.

Tools and flows for painless syncing

In addition to Robocopy/AzCopy, there are suites that make life easier when You need to schedule synchronizations and move large batchesOne of them is AOMEI Backupper Standard, which offers “Basic Sync”, scheduled tasks (daily/weekly/monthly), Support for internal/external drives, NAS and cloud, and additional modes (in its advanced edition) such as real-time, mirror or bi-directional synchronization.

Its typical flow: you choose “Basic Sync”, rename the task if you want, you select source and destination folders (you can add several), configure options such as comments or email notification, and launch the operation. For migrations between PCs or cleaning very large files, transfer tools like EaseUS Todo PCTrans also help with guided wizards.

Important: When the network is the underlying problem, schedule off-peak timing windows and limiting concurrency can make the difference between smooth copying and a bottleneck.

Quick Acceleration Checklist

  • Usa Robocopy instead of Explorer. For large files, /J; for many little ones, /MT + /LOG. Don't waste cycles painting the console.
  • Enable Multi-channel SMB, network offloads (RSS, LSO, RSC) and Large MTU. Avoid SMB client throttling with EnableBandwidthThrottling 0.
  • Active SMB compression when the file type justifies it (VM images, ISOs, dumps). Don't force it on already compressed content.
  • In 22H2, consider /J, compress, or temporarily reverse If the impact is critical, in 24H2, only evaluate SMB signing if the network is trusted. Safety and performance must be balanced.
  • Optimize hardware: USB 3.x, drivers up to date, “Better Performance” policy, format to NTFS if applicable and, if you can, switch to SSD (check the health of the SSD).
  • Close apps in the background, disables indexing on slow drives, and for networks with DFS, use direct UNC to discard references problematic.
  • If everything started well and then fell, your limit is the disk. Adjust expectations or improve the storage subsystem. Don't blame the network if the puck doesn't give more.
  • Check antivirus and third-party network providers; Each marginal gain adds minutes in long copies.

Speeding up transfers in Windows 11 is a combination of choosing the right tool (Robocopy/AzCopy), tweaking SMB and network settings, and taking care of your hardware.With these guidelines, you should be able to recover the numbers your infrastructure can and should deliver, both locally and over the network.

Slow transfer on USB: reasons and solutions-0
Related articles:
Slow USB transfer: causes and definitive solutions to speed up file copying