According to Microsoft, you can split install.wim
into multiple install*.swm
files, so they can fit in a FAT32 volume.
Here are the steps (assume your USB drive is mounted on /Volumes/USB
):
-
Install 7-Zip and wimlib, an open-source alternative to Microsoft's DISM.
bash
brew install p7zip wimlib
-
Remove the half-copied file
bash
rm /Volumes/USB/sources/install.wim
-
Extract install.wim
from the ISO to somewhere else.
bash
cd ~/Downloads
7z e Win10_1903_V1_Germal_x64.iso sources/install.wim
-
Split install.wim
into two parts, each part roughly 3 GiB.
bash
wimsplit ~/Downloads/install.wim /Volumes/USB/sources/install.swm 3072
If you are on Windows, you can use DISM instead of wimlib:
bat
Dism /Split-Image /ImageFile:C:\Users\Admin\Downloads\install.wim /SWMFile:D:\sources\install.swm /FileSize:3072
If you are on Linux, instead of brew
, you can use apt
, dnf
, pacman
, etc. to install packages.