With Windows 10's support clock ticking down to October 14, 2025, millions of PC users face a pivotal migration to Windows 11—and the clock is loud. After that date, Microsoft stops shipping security patches and technical fixes for the decade-old OS, leaving holdouts exposed. The move isn't just about upgrading an operating system; it's about hauling years of carefully curated files, applications, and settings across the digital divide. Fortunately, the path is paved with a range of practical tools and techniques that suit everyone from casual home users to IT fleet managers.

This guide distills advice from Computeractive magazine, Microsoft's official documentation, and real-world community feedback into a blueprint for a clean, secure migration. You'll find step-by-step instructions for the most reliable methods, truth about what each one actually transfers (and what gets left behind), and a checklist to ensure nothing slips through the cracks.

What you can actually move—and what stays put

Before you pick a tool, it's critical to understand what "migration" means in practice. Most methods handle personal files—Documents, Pictures, Desktop contents, Music, Videos—and many Windows settings like theme, wallpaper, and pinned taskbar icons. A few go further, carrying application settings, user profiles, or even entire programs. But no single free, built-in Microsoft tool will clone your entire old PC onto new hardware. The gap: legacy desktop applications and their license activations almost always demand manual reinstallation or a commercial third-party utility.

Microsoft's own Windows Backup tool (available in Windows 11) offers two paths: a cloud-backed OneDrive route and a local PC-to-PC transfer that runs over your home network. Both preserve personal folders and a list of Microsoft Store apps, which may reinstall automatically on the new machine. But they stop short of moving desktop software like Adobe Photoshop, niche business tools, or even saved Wi‑Fi passwords. BitLocker-encrypted drives are also excluded unless you decrypt them first.

External drives and manual copies give you complete control over which files travel, but they demand vigilance—forget to grab the AppData folder and a program's custom dictionaries or templates vanish. Nearby Sharing is a quick-and-dirty solution for a handful of documents, but it chokes on terabytes of media. Robocopy and the User State Migration Tool (USMT) emerge as the powerhouse options for those comfortable with command lines or deployment consoles. And commercial tools like Laplink PCmover promise a one-click application move, albeit with a price tag and no ironclad guarantee every dusty application will boot on new hardware.

Method 1: Windows Backup – the built-in guide for consumers

Windows Backup is Microsoft's answer for the average user who just wants their stuff to appear on a shiny new Windows 11 machine. It integrates directly into the out-of-box experience (OOBE), greeting you during setup with an offer to restore from a backup or transfer from an old PC.

How it works: On your old Windows 10 or 11 PC, open the Windows Backup app and select "Transfer information to a new PC." On the new Windows 11 device during setup (or later via Settings > System > Backup), follow prompts to pair the two machines using a one-time code displayed on the new screen. Ensure both are on the same local network and plugged into power. A checklist of folders and settings appears—pick what you want and start the transfer. For large collections, the app estimates time and can resume if the connection drops.

What it moves: Personal folders (Desktop, Documents, Pictures, Music, Videos), many personalisation settings, and a list of Microsoft Store apps. Some settings like accessibility preferences and sign-in info may come along. It does not transfer third-party desktop applications, saved passwords, or system files.

Caveats: The OneDrive-based backup variant uses your cloud storage. Microsoft's free tier caps at just 5GB—far too little for the 80GB photo library sitting on many hard drives. If you hit the limit, the transfer stalls. The local PC-to-PC path avoids this, but both machines must stay online and awake throughout. BitLocker drives must be decrypted beforehand, and you'll still need to manually reinstall most heavyweight programs.

For a home user with a few hundred gigabytes of data and a stable network, Windows Backup's local pairing offers a frictionless start. Just double-check your OneDrive quota if you choose the cloud route.

Method 2: External drives – the offline lifeline

When internet speed is sluggish or data volumes swell beyond the terabyte mark, nothing beats a physical drive. USB 3.0/3.1, USB-C, or Thunderbolt enclosures push data at hundreds of megabytes per second, and you own the medium. The process is refreshingly simple: plug in, drag folders, eject, reconnect to the new PC.

Step by step: Connect a suitably sized external drive (format it as exFAT or NTFS unless you know FAT32's 4GB file size limit won't bite you). Using File Explorer, copy the entire user folder tree—Documents, Desktop, Pictures, Music, Videos, Downloads—plus any custom locations you've created. For extra insurance, enable File History before the copy to capture incremental backup versions that you can restore later. Safely eject the drive, plug it into the new Windows 11 machine, and paste the folders into the matching user profile locations.

Strengths: Offline, no subscription, full control over file selection. You can pick up where you left off if the process is interrupted. For families sharing a PC, you can move each user's data by copying their respective C:\Users[username] folders (though you'll need to recreate the user accounts on the new PC first).

Weaknesses: Human error is the enemy. Forget to copy AppData\Roaming and your email client's signatures vanish. Skip a custom Steam library folder and you're redownloading hundreds of gigs. FAT32 formatting remains a hidden trap—attempt to move a 6GB video file onto a FAT32 drive and Windows throws an error. Reformatting erases everything on the drive, so plan ahead.

For those with an existing backup regimen, external drive migration is the safest, most predictable method. Pair it with a checksum verification tool for irreplaceable family archives.

Method 3: Nearby Sharing – for quick handoffs

Nearby Sharing uses Bluetooth and Wi‑Fi Direct to ping files directly between two Windows PCs without any cables or cloud accounts. It's perfect for sending a contract, a batch of photos, or a presentation to a laptop across the room, but it's not a bulk migration solution.

How to enable: On both PCs, head to Settings > System > Nearby sharing and flip the toggle to "My devices only" (safer) or "Everyone nearby." In File Explorer, right-click a file or folder, choose Share, and select the target PC from the list that appears. The receiving machine pops a notification; accept it and the file lands in the Downloads folder (customisable via settings).

Limitations: Nearby Sharing is designed for ad‑hoc transfers, not terabytes of data. Transferring several gigabytes of high‑resolution images over a shaky Wi‑Fi connection can take hours and is prone to interruption. Virtual private networks (VPNs) and network isolation settings can block device discovery. For moving a full user profile, stick with other methods.

Method 4: Robocopy – the power user's script

Robocopy (Robust File Copy) is a built-in command-line utility that power users have sworn by since the Windows XP era. It copies files with surgical precision, preserving timestamps, attributes, and folder structures while offering multithreading for speed and restartable modes for flaky connections.

A single command can mirror an entire user folder onto a backup drive:
robocopy "C:\Users\OldUser\Documents" "D:\Backup\Documents" /MIR /ZB /R:3 /W:5 /LOG:C:\Logs\robocopy_documents.log

The /MIR flag mirrors the source to destination, deleting any files in the destination that aren't in the source. /ZB uses restartable mode to pick up mid-file after a network hiccup. /R:3 /W:5 caps retries at three with five-second waits. The log file provides a complete audit trail.

Why use Robocopy: It's fast, reliable, and scriptable. IT pros can wrap it in a batch file to migrate dozens of machines with a single double‑click. It's ideal for moving massive media libraries or user profiles where you need every file accounted for.

Caveats: The /MIR flag is a double‑edged sword—if you accidentally target the wrong folder, you'll wipe its contents. Command-line syntax intimidates casual users. But for those willing to learn, there's no faster way to push terabytes across a local network or external drive.

Method 5: USMT – for enterprise deployments

The User State Migration Tool (USMT) is Microsoft's heavy artillery for large-scale rollouts. It comes as part of the Windows Assessment and Deployment Kit (ADK) and is meant for IT administrators who need to migrate hundreds or thousands of machines while retaining user accounts, application settings, and OS customizations.

USMT works in two phases: ScanState captures user data and settings into a compressed migration store; LoadState restores it on the fresh Windows installation. Detailed XML configuration files (MigApp.xml, MigDocs.xml, Config.xml) let you specify exactly what to include or exclude—right down to individual registry keys. The tool integrates with deployment solutions like Microsoft Deployment Toolkit (MDT) or System Center Configuration Manager (SCCM) for hands‑off automation.

Not for casual users: USMT demands training, planning, and thorough testing on a pilot group. But for a business facing the October 2025 deadline with hundreds of aging Windows 10 workstations, it's the most precise, auditable method.

Method 6: Third-party tools – when you need apps moved automatically

Ask any prosumer what they dread most about a PC upgrade, and they'll point to reinstalling two dozen niche applications and hunting down long‑lost license keys. That's where commercial migration software earns its keep. Laplink's PCmover is the most widely recognized, often bundled free with new Intel‑based PCs. Zinstall, EaseUS Todo PCTrans, and others compete in the same space.

What they move: PCmover Professional and Ultimate editions claim to transfer installed programs, user profiles, files, and settings from an old PC to a new one over a network, cable, or external hard drive. The software analyzes both machines and provides a checklist of what to move. After the transfer, many applications appear ready to run on the Windows 11 desktop.

The reality: No tool can guarantee 100% compatibility. Legacy 16-bit apps or software with hardware‑tied activation (like some Adobe suites) will likely demand re-licensing. Complex programs with deeply nested dependencies—think accounting software or medical records systems—may require the vendor's own migration toolkit. Always test a critical line‑of‑business application immediately after the move.

PCmover's OEM editions are free for qualifying buyers, but the Professional version costs around $70. That's a small price compared to days of manual setup—if it works for your specific app stack. Keep original installation media and license keys ready as a fallback.

Pre-migration checklist: don't start until you've done these six things

  1. Inventory everything: List your must‑keep folders, note any custom locations (e.g., D:\Projects), and document installed applications with their license keys. Belarc Advisor or a simple PowerShell script can help.
  2. Back up, back up, back up: Create a full backup to an external drive, and if possible a second copy to the cloud. Do not begin a migration without a verified fallback. A system image from the built-in Backup & Restore (Windows 7) tool adds extra safety.
  3. Decrypt BitLocker: If your source drive uses BitLocker, decrypt it from Control Panel > BitLocker Drive Encryption. Windows Backup won't touch encrypted disks, and even PCmover can choke.
  4. Prune your data: Delete temporary files, empty the Recycle Bin, clear browser caches, and consolidate scattered documents into standard user folders. Less data means faster transfer.
  5. Check target storage: Ensure the new PC has enough free space. If using Windows Backup's OneDrive path, verify your cloud quota. For external drives, confirm the file system supports large files (exFAT/NTFS).
  6. Update both PCs: Run Windows Update on the old and new machines. The latest patches fix bugs in the transfer tools' pairing and resume logic.

Post-migration checklist: the final verification

Once the bits have landed, spend an hour spot‑checking. Open a handful of critical documents, photos, and spreadsheets. Look for broken shortcuts or missing fonts. For email clients using local PST/OST files (Outlook), reconfigure the profile to point to the correct file path.

Reinstall any applications that didn't make the jump—usually anything not from the Microsoft Store. Enter license keys and activate as needed. Run Windows Update again and check Device Manager for missing drivers (especially for printers and graphics cards).

Turn on BitLocker if you had it before, and ensure your backup regimen (OneDrive, File History, or a third-party service) is active. Keep the old PC offline but powered on for at least a week as an insurance policy; once you're completely satisfied, securely wipe its drive before recycling or selling.

Common pitfalls and how to dodge them

  • Transfer stalls or crawls: Switch from Wi‑Fi to wired Ethernet for large local transfers. If using OneDrive, verify you haven't hit the free tier cap. For external drives, try a different USB port or a powered hub.
  • Missing files after migration: Search for the file name on the old PC to confirm you copied the correct folder. Check hidden directories like AppData, ProgramData, or custom library locations. A Robocopy /LOG file can reveal which files were skipped.
  • Application license re‑activation nightmares: Before you wipe the old PC, deauthorize software that ties licenses to hardware (e.g., iTunes, some Adobe products). Keep a record of license keys and download links.
  • BitLocker blocks the transfer: If you forgot to decrypt, you'll get a cryptic error. Boot into the old PC, decrypt the drive, and restart the transfer.
  • FAT32 file size error: If you see "file too large for destination file system," reformat the external drive as exFAT (for cross-platform use) or NTFS (Windows-only). Remember, reformatting erases everything, so back up the drive first.

The final verdict: which path should you take?

For the home user with a couple hundred gigabytes of data and a stable home network, Windows Backup's local PC-to-PC transfer is the simplest, most integrated choice. It requires no extra hardware or subscription. Just decrypt BitLocker, update both machines, and follow the pairing wizard.

If your media library rivals a small server farm, skip the cloud entirely and opt for an external drive formatted as NTFS or exFAT. Pair it with Robocopy if you want a scripted, verifiable log of every byte moved. This method is also perfect for users in rural areas with metered connections.

Businesses migrating dozens or hundreds of machines should bite the bullet and learn USMT. When coupled with automated deployment, it scales elegantly and preserves employee productivity by restoring all their customizations in one sweep.

For those who refuse to manually reinstall 30 specialty programs, PCmover offers a tempting shortcut. But treat it as a time-saver, not a silver bullet—run a test migration on a non-critical machine first, keep original installers and keys within reach, and budget time to reactivate stubborn licenses.

Migration is a chore, but with a solid plan, it becomes a one‑weekend project rather than a month‑long headache. As the October 2025 deadline nears, the best time to start is now—while your Windows 10 machine still boots and your backup is fresh.