Velvet Star Monitor

Standout celebrity highlights with iconic style.

general

How to create *from 0* a bootable disk partition for windows 10?

Writer Mia Lopez

I just cloned a hard drive partition (of Windows 10) to a new hard drive.

The thing is that I did it wrong and I just copied the data part, NOT the boot part. So now I have a new hard drive with a Windows copy with no boot partition.

I tested many tutorials, but the problem is that the bootable part NEVER existed on the new hard drive (so it can't be recovered!).

If someone knows how to create from scratch a new bootable partition for Windows 10. I have many licensed programs and lots and lots of configuration.

And if someone asks I just deleted all the data from the old hard drive (genius!), so I can't copy now the bootable disk partition.

1

1 Answer

There are general steps in the BCDBoot docs:

For UEFI the partition layout is documented at:

  1. Create a new "system" partition of approximately 250 MB:

    DISKPART> create partition efi size=250
  2. Format using FAT32, and assign a temporary drive letter:

    DISKPART> format quick fs=fat32 label="System"
    DISKPART> assign letter="S"
  3. Install the files needed by Windows boot manager, together with an UEFI NVRAM "boot entry":

    C:\> bcdboot C:\Windows /s S:

For BIOS the partition layout is documented at:

  1. Create a new "system" partition of approximately 100 MB:

    DISKPART> create partition primary size=100
  2. Format using NTFS, and assign a temporary drive letter:

    DISKPART> format quick fs=ntfs label="System"
    DISKPART> assign letter="S"
  3. Set the 'active' or 'bootable' flag for this partition:

    DISKPART> active
  4. Install a partition boot sector:

    C:\> bootsect S: /nt60
  5. Install a compatible MBR boot sector to the whole disk:

    C:\> bootsect S: /nt60 /mbr
  6. Install the files needed by Windows boot manager:

    C:\> bcdboot C:\Windows /s S:
7

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