vhdiso icon indicating copy to clipboard operation
vhdiso copied to clipboard

how to boot windows VHD without use ventoy

Open candrapersada opened this issue 2 years ago • 5 comments

how to boot windows VHD using grub without use ventoy like vdiskchain?

candrapersada avatar Oct 18 '21 12:10 candrapersada

You could try ntloader.

menuentry "Boot Windows NT6+ PE" {
    probe -s dev_uuid -u (hdx,y);
    if [ "${grub_platform}" = "efi" ];
    then
        chainloader /ntloader initrd=/initrd.lz1 uuid=${dev_uuid} file=/path/to/win10.vhd;
    else
        linux16 /ntloader uuid=${dev_uuid} file=/path/to/win10.vhd;
        initrd16 /initrd.lz1;
   fi;
}

ntloader and initrd.lz1 must be placed under the same FAT partition when booting with UEFI.

a1ive avatar Oct 19 '21 01:10 a1ive

is it for grub legacy or for uefi?

candrapersada avatar Oct 19 '21 01:10 candrapersada

both. (grub2 legacy & grub2 uefi64)

a1ive avatar Oct 19 '21 01:10 a1ive

why This repository has been archived by the owner. It is now read-only. ntloader?

candrapersada avatar Oct 19 '21 05:10 candrapersada

why This repository has been archived by the owner. It is now read-only. ntloader?

Because I no longer maintain the project.

a1ive avatar Oct 19 '21 05:10 a1ive

then what will happen if the ntloader project is abandoned?

candrapersada avatar Oct 19 '21 05:10 candrapersada

and ntloader alternative

candrapersada avatar Oct 21 '21 08:10 candrapersada

hi, if u want to boot with a windows 10-11 OS using a vhdx disk... try easyBCD.

i have 4 vhdx disks, and i boot them without ventoy.

same for my surface pro 5.

but, to boot with a linux OS using vhdx disk,... i search a solution. maybe here

laurentquark avatar Sep 05 '22 19:09 laurentquark