Es soll vorkommen, dass man ein bootbares Windows 10 auf einem USB Stick braucht, aber gerade keinen Windows parat hat, um dieses Windows Tool zur Erstellung desselbigen zu starten.

Im folgenden also eine kleine Anleitung, wie man auf einem beliebigen Linux einen entsprechendes Windows 10 auf einem Stick erschafft.

# USB Device
DEVICE=/dev/sdX

# Delete every bit on it
dd if=/dev/zero of=$DEVICE bs=1M count=1

# Create new partition
fdisk ${DEVICE}
n
p
1
ENTER
ENTER
t
c
a
w

# Format and mount
mkfs.vfat ${DEVICE}1
mount ${DEVICE}1 /mnt/

# Copy data
mkdir Win10
mount -o loop Win10_1709_German_x64.iso Win10
cp -a Win10/* /mnt/usb

# Unmount
umount /mnt/
umount Win10