Bootable USB DOS
Bootable USB DOS
In case youre wondering how big of a USB flash drive you need, an 8GB drive is perfect since it can accommodate any of the t hree available ISO images. Here are the steps to format a USB flash drive. 1. 2. 3. 4. 5. 6. 7. 8. 9. Insert a USB flash drive into your computer Start a Command Prompt as an Administrator and type diskpart. This starts the Disk Partition tool which you need to use to format the flash drive. Once you see the DISKPART command prompt, type in the following commands DISKPART> list disk DISKPART> select disk # DISKPART> clean DISKPART> create partition primary DISKPART> select partition 1 DISKPART> active DISKPART> format FS=NTFS /* shows list of active disks */ /* # is the number for your USB flash drive */ /* deletes any existing partitions on the USB flash drive */ /* create a primary partition on the USB flash drive */ /* select the newly created partition */ /* make the new partition active */ /* format the USB drive with NTFS file system */ /* assign a volume and drive letter to the USB drive */ /* exit Disk Partition */
At this point, your USB flash drive should be showing up in Windows Explorer and have a drive letter assigned to it, e.g. F:\.
Step 4: Copy the Windows 8 files onto the USB flash drive
From a command line, use XCOPY to copy the Windows 8 files to the USB flash drive . In the example below, I :\ is the drive where the ISO image is mounted. F:\ is the USB flash drive. XCOPY I:\*.* F:\ /E /F /H