I am installing Windows 10 OS through Ubuntu based Clonezilla Server in PXE UEFI mode. I need to add the windows os provision into the server using grub.cfg for clients deployment.
I added the windows 10 iso extracted directory in tftpboot/nbi_image/win_files
directory.
my tftp root directory is "/tftpboot/nbi_image".
Now I need to edit the grub files in the tftpboot/nbi_image/grub-efi.cfg/grub.cfg
, this is my entry:
menuentry "Windows 10 UEFI" {
insmod part_msdos
insmod chain
chainloader /win_files/bootx64.efi
}
Error: invalid EFI file path.
The bootx64.efi is the file from clonezilla server setup. If any other file is needed, from where I should get that?
Since this has been failing every time. So, for this I want to understand how this boot sequence goes? In what order, what files are being read from windows installation files present in its ISO?