My laptop has 465 GB of C:(windows partition) and 465 GB of D:(empty) drive. C: drive is 183 GB full, D: is empty. I want to clone entire C drive to my new 512 GB, MX500 crucial SSD such that SSD boots. Will unallocating the D drive make the bit by bit cloning process faster?
1 Answers
Partitions represent completely independent disk areas. If you perform a block-level clone of the C: partition, your cloning tool will only need to care about the 465 GB that was assigned to the C: partition, and won't even look at the rest.
(If you perform a block-level clone of the whole disk, it'll still spend 90% of the time cloning the C: partition, and then it'll quickly run out of space because your new SSD is smaller than the old HDD.)
What will make the process faster is either file-level cloning (e.g. WIM imaging) or filesystem-aware block cloning. For example, the Linux ntfsclone tool (which is used by CloneZilla) performs a bit-by-bit clone but it'll skip all blocks which have no files or other NTFS data stored on them. I would assume that commercial Windows tools do the same.
- 452,512
-
If I perform block level cloning of C:, my boot partition to my SSD, would I face problems while booting with the cloned SSD? – helloworld1e. Aug 29 '20 at 12:41
-
@helloworld1e. Any boot issues that may arise can be fixed in WinPE/WinRE by issuing the following: BIOS:
bootrec /fixmbr && bootrec /fixboot && bootrec /rebuildbcd|| UEFI:bootrec /fixmbr && bootrec /rebuildbcd– JW0914 Aug 30 '20 at 11:48 -
@JW0914 I finally installed Crucial MX500 512GB today using "Acronis True Image for Crucial" cloning software, Windows booted fast and smooth after installing the SSD, no issues!! – helloworld1e. Aug 30 '20 at 11:56
DISM, which is the native way. While WIMs require a storage medium for the image, it can be saved to the drive with the imaged partitions, serving as a backup. Due to having this same conversation repeatedly w/ different users, I'm creating a question and answer that will address all of this. – JW0914 Aug 29 '20 at 12:27DISMin Windows >=8, does more than just what its name implies (Deployment Image Servicing and Management, with image applying to both an online installed Windows OS or offline image), and while it's mainly used by businesses via MDT or SCCM, that's largely due to Microsoft's long history of actively pushing users away from using CLI (a significant portion of Windows users fear using CLI - contrast that with Linux or BSD), which is why so many 3rd party tools exist. – JW0914 Aug 29 '20 at 12:52