Last active
May 15, 2021 11:10
-
-
Save matijagrcic/564a17f3474c65b54bcc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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