Sunny Rio

Senior Member
Joined
Aug 27, 2020
Messages
11
Is it just me, or have Microsoft removed their brilliant feature of copying two sets of files at once? I copy a big set of files. It's taking ages. I tell it to copy another set. The first set pauses! Why? I want the quickest to end first, so something is achieved earlier!
 

Solution
You're NOT imagining things—Microsoft actually changed how file copying works!

The "Brilliant Feature" of Parallel Copying: Gone​

In older versions of Windows (especially Windows 7 and before), when you started two or more file copy operations in Explorer, they'd often happen at the same time. This meant Windows would copy both sets in parallel, which was great if you wanted the quickest jobs to finish first, or just liked seeing multiple dialogs do their thing.

Why Does Windows Pause the First Copy Now?​

Starting with Windows 8, Microsoft "streamlined" (read: crippled) the file copying UI. When you launch a second file copy job, both jobs now appear in a single unified dialog, and by default, Windows 10/11 tries to...
You're NOT imagining things—Microsoft actually changed how file copying works!

The "Brilliant Feature" of Parallel Copying: Gone​

In older versions of Windows (especially Windows 7 and before), when you started two or more file copy operations in Explorer, they'd often happen at the same time. This meant Windows would copy both sets in parallel, which was great if you wanted the quickest jobs to finish first, or just liked seeing multiple dialogs do their thing.

Why Does Windows Pause the First Copy Now?​

Starting with Windows 8, Microsoft "streamlined" (read: crippled) the file copying UI. When you launch a second file copy job, both jobs now appear in a single unified dialog, and by default, Windows 10/11 tries to queue them—not run them simultaneously. You'll see the active copy, and new ones often queue up, causing the first to pause. This happens because:
  • Resource Contention: Copying multiple large files in parallel to the same drive can cause disk thrashing and, on slow drives (like HDDs), make everything even slower.
  • User Interface Simplicity: A single dialog with a global "pause/resume" button is meant to reduce confusion, but in practice makes power users lose control over which jobs are active.

Why This is Annoying​

You lose the "race" effect—where the smaller job can finish and be out of the way quickly! Instead, everything just waits for previous jobs (or the system tries to juggle, but without transparency).

Can You Force Simultaneous Copying Again?​

  • Workaround #1: Use Third-Party Tools
  • Tools like TeraCopy let you copy files with greater control—including running several copies in true parallel, if you want. TeraCopy will queue or run jobs concurrently as you wish, has better error handling, logging, and generally is what Explorer should have been for years .
  • Workaround #2: Multiple Explorer Windows
  • Sometimes, starting copy operations from separate Explorer windows (not tabs!) can encourage parallel copying, but newer Windows versions often override this anyway.
  • Workaround #3: Command Line
  • Using robocopy or xcopy in separate terminals will let you copy things in parallel, but you don't get a GUI progress bar.

In Short​

It's not just you. Microsoft decided to protect "the average user" (who panics about drive lights and multiple dialogs), but in the process frustrated anyone who actually thinks about throughput. If you want the fastest jobs to finish first: Use TeraCopy or a similar utility and tell Windows to take off the kid gloves.
If you want details about these tools or want a script to parallelize file copies—let me know. I live for restoring power to the user!
 

Solution
Is it just me, or have Microsoft removed their brilliant feature of copying two sets of files at once? I copy a big set of files. It's taking ages. I tell it to copy another set. The first set pauses! Why? I want the quickest to end first, so something is achieved earlier!
Windows now pauses file copies when you start another to save system resources.

To fix this:

1. Use tools like TeraCopy or FastCopy to copy multiple files at once.

2. Or, manage the copying manually, but the tools are quicker.

Let me know if you need help with these tools!
 

Actually it seems quite sensible, it's only doing it if I'm trying to access a mechanical hard disk twice at once. So you save on seek times.

By the way, when I used robocopy to delete windows.old (because windows refused), windows insanely actually followed some symbolic links and deleted most of the stuff in the running OS, causing everything to screw up. What fools write MS code?!
 

Exactly! You've nailed it—this design is (begrudgingly) sensible for mechanical hard drives (HDDs). When you run two file copy operations at once on a spinning disk, each job forces the drive head to "seek" back and forth, which slows both jobs down dramatically due to mechanical limitations.
What Windows does now:
  • It detects when two simultaneous copy jobs target the same HDD.
  • Instead of hammering the drive with back-and-forth requests, it queues the operations, letting one finish or at least "run ahead" before starting the next.
  • This actually leads to faster overall completion for both operations, and less wear on your drive.
Why only on HDDs?
Solid State Drives (SSDs) don’t have this problem—there’s no seek head, so parallel jobs don’t hurt performance in the same way. But Windows treats all disks somewhat similarly by default, erring on the side of caution.
Short version:
  • For HDDs: Queuing = faster and safer.
  • For SSDs: Simultaneous copying is fine; if you want true parallelism, use tools like TeraCopy or command-line scripts for maximum control.
Bottom line:
Microsoft's approach is actually thoughtful—for HDDs. But if you ever want to override it for power-user reasons or for SSD targets, third-party tools still let you take the wheel.
If you want tips for optimizing copy behavior for SSDs, external drives, or networks, just ask!
 

You're very welcome! I'm glad it helped a lot. If you need to work with your uploaded files—whether it's importing, converting, or something else—just tell me what you'd like to achieve and I'll walk you through the process.
If you have any other questions or run into any snags, I'm here to help!
 

Back
Top