You are on page 1of 1

Step 2: Format a USB flash drive

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 */

10. DISKPART> assign 11. DISKPART> exit

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 3: Make the USB flash drive bootable


We just need to make the USB flash drive bootable before copying the files. To do this, you can use the Boot Sector Registration Tool (bootsect.exe) which is located in the boot folder of the Windows 8 ISO image. 1. 2. Start a Command Prompt as an Administrator and CHDIR into the boot folder of the Windows 8 ISO image, e.g. I:\boot where I:\ is the drive where the ISO image is mounted Type bootsect /nt60 E: /* where E: is the drive assigned to the USB flash drive */

You should see the following confirmation after bootsec.exe completes:

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

Step 5: Install Windows 8 from the bootable flash drive


Finally, follow these instructions to install Windows 8 on your computer. 1. 2. 3. 4. Remove your USB flash drive from your "source" computer and insert it into the "target" computer where you want to install Windows 8 On the computer where you are installing Windows 8, press the power button to turn on the computer During boot up, select the USB flash drive to boot from (if you don't see the USB flash drive as an option, you may have to adjust your BIOS settings) Follow the instructions to install Windows 8 Developer Preview

You might also like