Hi,
There some cases where the bootmgfw.efi is not in 1/Windows/Boot/EFI/bootmgfw.efi :
$ time 7z l sources/install.wim | grep -i efi/bootmgfw.efi$
2010-11-21 04:24:16 ....A 672640 314792 6/Windows/Boot/EFI/bootmgfw.efi
2010-11-21 04:24:16 ....A 672640 314792 7/Windows/Boot/EFI/bootmgfw.efi
2010-11-21 04:24:16 ....A 672640 314792 8/Windows/Boot/EFI/bootmgfw.efi
2010-11-21 04:24:16 ....A 672640 314792 9/Windows/Boot/EFI/bootmgfw.efi
real 0m41.849s
user 0m54.248s
sys 0m6.604s
Can you detect the bootmgfw.efi file location inside the sources/install.wim such as :
$ efi_file=$(7z l sources/install.wim | grep -m1 -i efi/bootmgfw.efi$ | awk '{print$NF}')
$ echo $efi_file
6/Windows/Boot/EFI/bootmgfw.efi
And this to your script ?
Hi,
There some cases where the bootmgfw.efi is not in 1/Windows/Boot/EFI/bootmgfw.efi :
Can you detect the
bootmgfw.efifile location inside thesources/install.wimsuch as :And this to your script ?