Skip to content

Instantly share code, notes, and snippets.

@matijagrcic
Last active May 15, 2021 11:10
Show Gist options
  • Save matijagrcic/564a17f3474c65b54bcc to your computer and use it in GitHub Desktop.
Save matijagrcic/564a17f3474c65b54bcc to your computer and use it in GitHub Desktop.
USB drive as FAT32 on a Win7/Win8/Win10
diskpart.exe
list disk (Find USB device)
select disk 1 (select USB drive)
clean
create partition primary
select partition 1
active
format quick fs=fat32 (UEFI can only USB boot to FAT32, not NTFS)
assign
exit
When in Windows installation
SHIFT+F10
dispart
list disk
select disk 1
clean
convert GPT
exit
Proceed with product key and installation
//device manager
mmc devmgmt.msc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment