Reboot system after deploying an image to destination machine a pop-up “Windows Recovery” error 0xc000000e
Release: 3.x
Image contains dynamic partitions:
In this case, customer image contains 6 partitions with dynamic partitions
It was determined in one situation that you could try unplugging the network cable for a successful image. It would be recommended to try that first, after image is put down, to see if that works for you.
Note this process will only work for systems with efi based Windows 10 image
In automation run the following commands
Diskpart
list disk
select disk 0 ( this should be the main drive in the computer )
clean
convert gpt
create partition efi size=100
format quick FS=FAT32 label="SYSTEM"
assign letter=S
create partition primary
format quick FS=NTFS label="WINDOWS"
assign letter=w
Note: all the above information can be put in the automation environment by editing the startup.bat file and recreating the preboot environment.. The diskpart script can contain:
echo SELECT DISK 0 >> x:\diskpart.txtecho CLEAN >> x:\diskpart.txtecho CONVERT GPT >> x:\diskpart.txtecho CREATE PARTITION EFI SIZE=100 >> x:\diskpart.txtecho FORMAT QUICK FS=FAT32 LABEL="SYSTEM" >> x:\diskpart.txtecho ASSIGN LETTER=S >> x:\diskpart.txtecho CREATE PARTITION PRIMARY >> x:\diskpart.txtecho FORMAT QUICK FS=NTFS LABEL="WINDOWS" >> x:\diskpart.txtecho ASSIGN LETTER=W >> x:\diskpart.txtecho EXIT >> x:\diskpart.txt
diskpart /s x:\diskpart.txt