Sometimes when creating a self booting USB using WinPE Builder the process may fail with the error "error building winpe image (10)" or "makewinpemedia failed error level 1".
makewinpemedia is Microsoft's software for preparing the drive. It isn't very tolerant of different drive configurations on USB flash drives.
This error will usually mean there is an issue with the partition on the USB drive and makewinpemedia cannot use the partition;
Related links:
Using WinPE builder with BurnInTest.
Using WinPE builder with OSForensics
makewinpemedia is Microsoft's software for preparing the drive. It isn't very tolerant of different drive configurations on USB flash drives.
This error will usually mean there is an issue with the partition on the USB drive and makewinpemedia cannot use the partition;
- The partition is too big to be formatted with FAT32.
- The USB drive is using GPT instead of MBR for the partition table. But MBR is also limited to 2TB drives.
- There is an unknown issue with the current partition preventing access
- For unknown reasons, small USB drives have been observed to give less trouble (<32GB).
diskpart
list disk
select disk <disk number of USB drive>
clean
convert mbr
create partition primary
select partition 1
active
format fs=fat32 quick
assign
exit
list disk
select disk <disk number of USB drive>
clean
convert mbr
create partition primary
select partition 1
active
format fs=fat32 quick
assign
exit
Using WinPE builder with BurnInTest.
Using WinPE builder with OSForensics
Comment