Glam Prestige Journal

Bright entertainment trends with youth appeal.

I got a new laptop and it's got Windows 10 pre installed...and before I even so much as access the internet I want to rip out the HDD and install a Solid State drive I have coming...so what should I do?....1) download all the security updates and new drivers (using iobit driverbooster) to the original hard drive and then created a "backup" on USB using windows recovery thing...or should I install the drivers after I swap out the hard drive or what....or do I need to use the SSD "cloning" software to reinstall windows on the SSD drive?

2

2 Answers

Here's how I do it using open-source software, a USB stick, and an external drive enclosure to temporarily host your new SSD. Will take you about an hour or so.

  1. Start your PC and log in normally with both new and old drives attached.

  2. Download GParted Live ISO image.

  3. Download unetbootin.

  4. Plug in your USB stick and then run unetbootin to install the downloaded ISO to your USB stick.

  5. Now reboot your computer using the advanced restart options (start menu → power menu → hold the shift key + press restart) to get into your UEFI options and change your boot options (from the advanced restart options, choose Troubleshoot → Advanced options → UEFI firmware settings). Once the computer restarts and you are in the UEFI settings, you should be able to set an option to make the computer boot from the USB stick.

  6. Exit UEFI and you will boot into GParted Live. During startup, you might be prompted about keymaps, language, etc. In most cases, you can just press enter to accept all of the defaults.

  7. Once GParted Live has started up its graphical interface, you will see icons for the terminal and GParted program (there's also an option to change the resolution to something more readable if you have a hi dpi screen). Plug in your external drive. Double click GParted to start it up and use the File -> Devices menu to verify the device name of each drive (usually /dev/sda for the internal drive and /dev/sdb for the external drive, but you should verify this or you could write over the wrong drive).

  8. If your current drive is bigger than the new one, you should now use GParted to shrink its partition and move any other partitions so that the sectors from the first through the last partition can fit on the new disk. (I suggest that you do NOT MOVE your main partition, just SHRINK it or you may be unable to boot from the drive again.)

  9. Now open the terminal and use the dd command to copy your old drive to your new drive. This will take a long time (but less time the more you can shrink the partition on the original drive). Enter the following command:

    # Double-check the device locations or you could corrupt your drives!
    sudo dd if=/dev/sda of=/dev/sdb bs=16M status=progress
  10. If your new drive is smaller than the original drive then the dd command will end with a disk full error. This is fine, but it will probably mean your new main partition is corrupted. You can fix this in the terminal using the gdisk tool (see here). Depending on the drive configuration you may need to follow these steps even if you don't get a disk full error.

    sudo gdisk /dev/sdb
    #will start interactive tool and warn you about corrupted partition
    #if it is corrupted enter the following commands
    x #for expert mode
    e #copy partition structures to end of disk
    w #write the change`
  11. Go back to the GParted program and select the reload devices menu option and verify the copied drive shows up correctly. You can now use GParted to resize the main windows partition to use all of the space on the new disk if necessary.

  12. You should now have a copy of the drive that you can install into the machine. Note that windows may report a conflict or have other issues if it detects the presence of the new and old drives because they share the same GUID so you should remove the old one (or format it if you don't need the backup).

2

Transfer Windows 10 to a new HDD or SSD.

If earlier suggestions do not work for you, to copy several partitions with GPARTED to get a bootable Win 10/8/7 disk, especially GPT disks, but also MBR disks, then try this well-known method. Displayed in the image below are 4 partitions for Windows 8.1. Windows 10 might have partitions ordered differently: the largest partition can be first.

Win 8.1 partitions, display from GPARTED

  1. Assume the source partition is on disk X. This partition contains all apps and settings, windows 10 system files, documents, downloads, user files, etc. The Win 8.1 example source partition is 87.38GB. It is the largest partition, the size required to be smaller than the target partition size.

    Other issues: disk errors, hibernation file, swap file, partition shrinking in Windows or GPARTED, deleting data to gain space.

  2. The target disk Y with sufficient disk space gets a new Windows 10 install with minimum features. The desired location on disk Y for the Windows install is unallocated space before any other partitions on the disk, usually 500GB is enough.Important: the unallocated space consumes the initial sectors on disk Y.

  3. Boot a Linux disk, flash disk recommended. The new Windows disk Y must be present. The source disk X must be present. GPARTED is expected in Linux. Start Linux GPARTED and copy on disk X the Windows data partition (the largest partition) to the Windows data partition on new disk Y (again, the largest partition). Exit Linux. Remove source disk X from the computer. Hook up disk Y in a computer.

    Important: Don't do anything to the other Windows partitions. This includes BOOT/ESP parition, Microsoft Reserved partition, Recovery partition.

  4. Boot the new windows disk Y. It should start normally, no tricks. If disk Y is inserted into a new computer or onto a different SATA cable or M.2 slot in the same computer, then windows may stall to load drivers, then resume boot. Windows often recovers from a hardware change. Re-activation of Windows may be required. Reboot two times to see if activation is done automatically.

About MBR source disk to gpt target disk. Success stories include copying the Windows data partition (largest partition) from MBR disk X to GPT disk Y. The source X and target Y are expected to be identical versions of windows 10: don't copy win 8 to win 10.About Windows 8 and 7. The same instructions apply: Windows versions on disk X and Y must match.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy