Create Bootable Windows 10 USB
Using the Rufus app ...
Partition Type:
MBR(Master Boot Record) scheme forBIOSorUEFI(2TBpartition limit).
GPT(GUID Partition Table) scheme forUEFIonly.File System:
NTFSforBIOSmachine (faster file transfers).
FAT32forUEFIorBIOSmachines.
Manually ...
1. Partition and format the USB drive (disk 1).
DiskPart.exeif UEFI machine
SELECT DISK 1 CLEAN CONVERT GPT CREATE PARTITION PRIMARY ACTIVE FORMAT FS=FAT32 QUICK ASSIGN EXITif not UEFI machine
SELECT DISK 1 CLEAN CONVERT MBR CREATE PARTITION PRIMARY ACTIVE FORMAT FS=NTFS QUICK ASSIGN EXIT
2. Copy Boot Config Data (BCD).
- @ Windows OS at drive
C:, and USB at driveK:…Using
BCDBoot.exebcdboot.exe C:\Windows /S K: /F ALL
- @ Windows Install ISO mounted at drive
J:, and USB at driveK:…
Using
BCDboot.exebcdboot.exe J:\BOOT /S K: /F ALLUsing
BOOTSECT.EXE(legacy; Windows XP)PUSHD J:\BOOT bootsect.exe /NT60 K:
Can specify machine firmware type;
/F UEFI|BIOS|ALL.
3. Copy all files from mounted ISO (J:) to USB (K:).
robocopy.exe J: K: /s