14

I have bought a larger SSD for my Windows 10 machine and an external USB enclosure and now I would like to transfer the content of the Windows 10 system disk onto the new SSD and eventually replace the system disk with this new SSD.

Problem: The Samsung Migration tool only prints an unspecific error when cloning the disk. As expected, this Software is unusable, and I also do not feel comfortable cloning the disk of a running Windows 10 system.

How can I do this?

Johannes Overmann
  • 911
  • 3
  • 9
  • 19

6 Answers6

15

I will only use Linux as I am used to it, if someone has a better way using other tools feel free to add an answer.

You can only clone your boot drive if it is not mounted. For this you will need to create a bootable USB drive with Rufus. You will need either a second M.2/SATA connector in your PC or an external case to connect your new drive while you are copying the data. Note that this process will only work as-is if there is no encryption in place.


0. Backup your data. This is the most important step.

0.5 Check if the backup was successful, and if it's possible to retrieve the data


  1. Download Rufus from Github
  2. Download SystemRescue from their Website
  3. Connect an empty USB Stick with a minimum of 4gb of storage to your PC, note that any files on it will be erased
  4. Start Rufus as Administrator and select your USB, the Systemrescue-x.xx-amd64.iso you've downloaded and click Start. Wait for the process to complete.

Rufus

  1. Shutdown your computer, boot into the boot menu and select the USB you've just created. You might need to enable legacy boot and the bootmenu in your BIOS settings.

  2. Select the first entry and press enter on Systemrescues boot menu. systemrescue grub

  3. Type "startx", press enter and wait for the GUI to load.

[startx5

  1. Click on the little black icon on the lower left to open a terminal window

terminall

  1. In the window which opens type "lsblk" to show all connected drives, your drive descriptors may vary. I will use sda as the current smaller drive and sdb as the new bigger drive. lsblk

9.1. We will use dd to write the data from one drive to the other, bit by bit. You need to make absolutely sure that you don't mix up the input and the output drive, as otherwise your data will be overwritten with 0s from your new, empty drive! Make sure you identified your drives in the previous step without any doubt before continuing! If you are using an external enclosure you can disconnect it and run lsblk again, the drive which disappeared is obviously the one you've disconnected.

  1. Clone your harddrive with dd: dd if=/dev/sda of=/dev/sdb status=progress bs=4M && sync where if is the input device and of is the output device. You will need to use the identifiers for your drives instead of sda and sdb obviously. Wait patiently until the process has finished.

dd

  1. When finished, you will notice that your new drive now has the exact same partition structure as your old one. Now we will resize and expand the partition to be able to use all of the storage space. Remember your "main" partitions number for the following steps. In my case it is sdb2.

same structure

  1. You'll want to run ntfsfix /dev/sdb2 to make sure your filesystem is clean before the next step.

  2. Start parted in terminal and type select /dev/sdb to select your new SSD. Type print to get an overview over your partitions. You'll want to work with the last, probably biggest partition, in my case "2".

parted print

  1. Type resizepart then 2 then `100%. Let parted finish its job. The partition now should take the maximum amount of availible space on the device.

resizepart

  1. Now type quit

  2. It can be necessary to extend the filesystem on the grown partition in order for windows to recognize the new size correctly. In order to do so, first run ntfsresize -c /dev/sdb2 to check the filesystem, followed by ntfsresize -x /dev/sdb2 to do the actual expanding.

  3. Run ntfsfix /dev/sdb2 again, just to be sure.

You're done at this point.

  1. As a last command type poweroff

  2. Swap your drives and boot windows.

Disclaimer: I don't take any responsibility for user error, data loss or nuclear war after following this guide.

mashuptwice
  • 3,395
8

Clonezilla live USB is currently the first thing to try and usually it will work very fluently.

Try to get both hard drives in the computer/laptop. This can be done with many workarounds, like USB cables, PCIe to NVMe adapters, etc.

Download Clonezilla Live iso and burn it to USB with YUMI Multiboot or Rufus (or other similar tool). Boot from it and use direct drive to drive clone. You'll probably won't need a guide, but just in case it's here.
Whole cloning on modern SSD can sometimes take as little as 10 mins.

If you can't have both drives simultaneously plugged - it's only better because situation forces you to create full backup image. If your OS will fail later, everything can be restored from this image without reinstalling OS and applications. Because it will be not just backup, but much better - verified restorable backup.

It will be necessary to get somewhere 3rd temporary drive (usually it's external large 1TB+ USB HDD). Boot with Clonezilla, but in this case do full disk image from old disk to external HDD. Replace old disk with new and try to restore image from external HDD to new disk. Keep in mind, that no changes should be done to previous disk until new is clearly bootable.
In about 1/3 of modern cases image restoring will be tricky and will require advanced fixing. About 2/3 of attempts will be easy and positive.
Special case which is sometimes possible, but requires superuser skills, is when new disk have capacity lower than previous.

Be sure not to have both copies of a single bootable Windows partition connected to your computer when booting into Windows.

halt9k
  • 180
  • 1
  • 12
fraxinus
  • 1,262
6

If you roughly know how to use Linux, do:

  1. As always, when messing with disks, backup all your important data. Otherwise you may be sent into the valley of tears.
  2. Install a live Linux system onto a USB stick, for example SystemRescue, Gparted Live or Rescatux.
  3. Boot the live Linux system from USB on the Windows 10 machine.
  4. Connect the new disk (in the external USB enclosure).
  5. Open a terminal if necessary (e.g. by searching for Terminal).
  6. Type lsblk to get the names of the disk devices (old and new disk). Look at the sizes.
  7. Transfer the content of the old system disk to the new disk using:
    • sudo dd if=/dev/sdX of=/dev/sdY bs=1M status=progress
    • (Replace X and Y by the old and the new drive, respectively. Getting this the wrong way round will erase your old system disk! if= is for the input/old/from disk (in file) and of= is for the output/new/to disk (out file).)
  8. sync
  9. Disconnect the new disk and reconnect the it.
  10. Start gparted to grow the Windows 10 system partition on the new disk.
  11. Move the last partition of the new disk to the very end of the new disk. You may need to leave about 1 MB of space after the last partition due to bugs in gparted.
  12. Increase the size of the Windows 10 system partition on the new disk (usually the biggest one) to occupy all the space. It may not be possible to occupy the last 1 MB of the free space, leaving a 1 MB gap, due to bugs in gparted.
  13. Apply the changes in gparted.
  14. Wait until this completes and a couple of seconds longer.
  15. Shut down the computer, remove the old system disk from the computer and install the new disk. Do not yet connect the old disk (e.g. in the external USB enclosure) because it still has the same disk id.
  16. Power-on the computer. It should now boot Windows 10 from the new disk and show the increased disk space.
  17. If you want to continue to use the old disk, e.g. in the external USB enclosure, to use the data on the system partition on the old disk: Change the disk ID so Windows 10 does not get confused:
Johannes Overmann
  • 911
  • 3
  • 9
  • 19
0

If you're not comfortable with using Linux to clone your disk then you can do this entirely with Windows tools, although you may need two additional storage devices.

If you don't already have a bootable DVD or USB stick, you can create one. Run "control" to open the old Control Panel. For a 16GB USB stick, select Recovery, then Create a recovery drive. For a DVD, select Back up and Restore (Windows 7), then Create system repair disc.

From the Control Panel, Back up and Restore (Windows 7), select Create a system image, and back it up to an external hard drive. Then, replace the old internal drive, boot from the DVD or USB stick, and select Repair your computer. This will allow you to restore the system image from the external hard drive.

Note that your partitions are restored to the same size as they were on your old internal drive. If your original system partition is not the last partition on your disk (typically because of a recovery partition), you won't be directly able to enlarge it from Disk Management. If you don't want the recovery partition, you could just delete it, or you could use a third-party tool to relocate it, and then enlarge your system partition.

Neil
  • 889
0

Used free MiniTool Partition Wizard 11 without any issue to copy the whole ACER Aspire 3 315-58 Windows 11 system SSD to a bigger USB SSD. You can choose to add the extra space to C: or use it e.g. for a separate drive D: After copy, the system SSD was replaced by the bigger SSD and it booted normally.

ᄂ ᄀ
  • 4,187
0

I found working app 'R-Drive Image' Version 7.2 build 7201. It is 30-day free period trial for windows OS. All features are available in this period:

https://www.drive-image.com/pl/Drive_Image_Download.shtml

enter image description here

I followed point 2.5 of the manual and the whole process went smoothly:

https://www.drive-image.com/downloads/Drive_Image_Manual.pdf

I have disconnected the old disk for now.