Second in a 2 part series on the Windows 7/2008 R2 Native boot feature. This part addresses how I implemented Native Boot with the currently more common BIOS boot scenario.

1. Confirmed Boot Sequence is set to BIOS
BIOS Boot Mode
2. Booted from Windows 2008 R2 media (in physical DVD Drive or iDRAC). 3. At initial GUI screen, press Shift F10 - this will open a command prompt.

Note 1: Supported PERC controller drivers are included with Windows 2008 R2 media.

Note 2: If physical disks do not have existing partition/file system; one will need to be created.

CMD Prompt from OS Install Screen

4. Run Diskpart at the command prompt

5. List Disk (to identify the existing Physical Disks)


    Diskpart Select Disk


6. Select disk 0


7. Create Partition Primary Size=2000


  • This creates a 2GB partition at beginning of disk that will be used in the install process as the "SYSTEM" disk e.g. the location of the bootldr.Diskpart Create Partition for SYSTEM
8. Format fs=ntfs quick label=system
    Format 2GB Part as NTFS with label of SYSTEM
9. Create partition primary

This creates a partition the size of the remaining space on the disk - I placed the VHD file on this partition.


Create Partartition primary than check partitions


10. Format quick fs=ntfs label=data

This created a new partition as NTFS and called it DATA

    Select the partition, than format it as ntfs


11. List Volume - List the volumes to see what we have

12. Assign - this will assign the Drive letter as C (i.e. next available drive letter)

Diskpart - list volume


13. create vdisk file=c:\HVR2-Boot.vhd maximum=50000 type=fixed

The VHD maximum size must allow enough free space on the physical partition for the pagefile.


Diskpart - create vdisk

14. list vdisk now shows the vdisk as 'added'

Diskpart - List vdisk
15. create partition primary this created a partition on the newly created vdisk
16.
attach vdisk

17. Now I switch back to the OS install. After a refresh the 50gb partition is now available with a Warning. The warning just means that windows does not know if the BIOS supports the disk type.


W2K8 Install Partition selection

18. Installed the OS normally!