BCDBOOT

On BIOS-based systems, the system partition is the active partition on disks using the Master Boot Record (MBR) disk format. BCDboot creates the \Boot directory on the system partition and copies all required boot-environment files to this directory.

BCDboot is a tool used to quickly set up a system partition, or to repair the boot environment located on the system partition.

After you run IMAGEX.exe /apply to c: drive, don’t restart right away. Instead, run bcdboot c:\windows, which initializes the system partition using files from the operating system image installed on the C: volume;

bcdboot C:\Windows

 

You can create SYSTEM partition on a drive other than C, as shown below:

DISKPART

   SELECT DISK 0                                   // Select the first hard drive.

   CLEAN                                           // Wipe the disk.

 

   CREATE PARTITION PRIMARY SIZE=300               // Create the system partition

   FORMAT QUICK FS=NTFS LABEL="System"             // and format it using NTFS.

   ACTIVE                                          // Label and assign a letter

   ASSIGN LETTER="S"                               // to the partition.

 

   CREATE PARTITION PRIMARY                        // Create the Windows partition

   FORMAT QUICK FS=NTFS LABEL="Windows"            // that fills the remainder

   ASSIGN LETTER="C"                               // of the disk.

EXIT

To initialize the system partition (S drive), do the following:

bcdboot C:\Windows  /s S:

 

BootSect

Bootsect.exe updates the master boot code for hard disk partitions to switch between Bootmgr and NT Loader (NTLDR).

To apply the master boot code that is compatible with NTLDR to the volume labeled E:

bootsect.exe /nt52 E:

 

Resolution:

DVD_Drive:\boot\Bootsect.exe /NT60 All