Problem with WIN10 1903 Image deployment
I have a problem with my Win10 1903 Image deployment. The deployment of the Image is fine and all no errors what so ever. But after rebooting the Workstation i get following error.
"bootmgfw.efi is not recognized as internal or external command, operable programm or script file".
Preinstallation Tasks
select disk 0
clean
convert gpt noerr
create partition efi size=200
assign letter=s
format quick fs=FAT32
create partition msr size=128
select disk 0
create partition primary size=95000
select Partition 3
assign letter=c
format fs=NTFS label="Windows" quick
select disk 0
create partition primary
select Partition 4
assign letter=d
format fs=NTFS label="Daten" quick
exit
Mid Level Tasks
bcdedit /set {bootmgr} device partition=s:
bcdedit /set {memdiag} device partition=s:
bcdedit /set {default} device partition=c:
bcdedit /set {default} osdevice partition=c:
Bcdedit /set {FWbootmgr} displayorder {Bootmgr} /addfirst
bootsect /nt60 s:
We run the same Tasks for WIN10_1809 Images without any problems at all.
Answers (2)
You could try this as your mid level task:
bcdboot c:\windows /s s: /f UEFI
bcdedit /store S:\efi\microsoft\boot\bcd /set {bootmgr} device partition=s:
bcdedit /store S:\efi\microsoft\boot\bcd /set {memdiag} device partition=s:
bcdedit /store S:\efi\microsoft\boot\bcd /set {default} device partition=c:
bcdedit /store S:\efi\microsoft\boot\bcd /set {default} osdevice partition=c:
Bcdedit /store S:\efi\microsoft\boot\bcd /set {FWbootmgr} displayorder {Bootmgr} /addfirst
bootsect /nt60 s:
Make sure you are booting from a UEFI boot source. (Look at the KBE footer, it should say Boot Mode: UEFI, before you start imaging). - Channeler 5 years ago
With our WIN10 1809 all is working proberly same settings and all. - Seriousbob 5 years ago