Creating a Bootable USB Flash Drive

Written by Barry Dysert (last updated October 5, 2015)

1

There may come a time when you want to boot your Windows system from a USB flash drive. You obviously must first have created a bootable drive prior to trying to use it. This tip tells you how to create a bootable USB flash drive. Although there is software on the Internet to help you with this process, this tip shows how to create a bootable USB drive using native Windows commands.

First, plug in your USB drive. Note: Your flash drive must have at least 4 GB of free space and it will be formatted to NTFS. So either use a new drive or backup your data before creating this bootable USB. Otherwise you will lose all your data.

Next, get to a command prompt window and type "diskpart" (without the quotes) and press Enter. Once in the DiskPart utility, type "list disk" (again, without the quotes) and press Enter. DiskPart will list the disks it detects. (See Figure 1.)

Figure 1. DiskPart's listing of the available disks.

I know by looking down the "Size" column that my USB disk is Disk 2. (If you're not sure, unplug your USB disk, and do another "list disk" to see which disk disappeared. Then plug it back in, do a third "list disk", and note the disk number of your USB disk.)

Going with Disk 2 as my USB disk, I enter the following lines in the DiskPart utility, ending each line by pressing the Enter key. (Also, on the first line you should change "2" to whatever disk is appropriate on your system.)

DISKPART> select disk 2
DISKPART> clean
DISKPART> create partition primary
DISKPART> select partition 1
DISKPART> active
DISKPART> format fs=NTFS  QUICK
DISKPART> assign
DISKPART> exit

As you enter each command, DiskPart displays a status message to keep you informed as to what it is doing. When these steps are done you should be out of the DiskPart utility and back to the command prompt. You now have a USB drive that is formatted using the NTFS file system and is therefore ready to be made bootable. To accomplish this, follow these steps:

  1. Insert your Windows 7 Installation DVD into the drive. (Step 2 assumes that drive D holds your DVD.)
  2. Using the command prompt window, change your device and directory to the DVD's boot directory where bootsect resides. For example:
  3.         C:\> cd /d  d:\boot
    
  4. Assuming that your USB drive has been labeled disk F by the operating system, type the following at the prompt:
  5.         D:\Boot> bootsect /nt60 f:
    
  6. Use Windows Explorer to copy all of the files on your Windows 7 Installation DVD to the formatted USB drive.
  7. You now have a bootable USB drive. When you want to boot from it, plug it in, reboot Windows, and when it is starting interrupt it to specify that you want to boot from the USB. (Changing the BIOS to change boot-device order is beyond the scope of this tip.)

    It is possible that you'll get an "access denied" error after performing step 3. If you do, it simply means that you need to open a command window using the administrator's rights. To do so, click the Start button and type "cmd" followed by Ctrl+Shift+Enter. Then you should be able to perform steps 2 through 4 with no problems.

 This tip (12620) applies to Windows 7.

Author Bio

Barry Dysert

Barry has been a computer professional for over 35 years, working in different positions such as technical team leader, project manager, and software developer. He is currently a software engineer with an emphasis on developing custom applications under Microsoft Windows. When not working with Windows or writing Tips, Barry is an amateur writer. His first non-fiction book is titled "A Chronological Commentary of Revelation." ...

MORE FROM BARRY

Enabling Libraries in File Explorer

Windows 7 introduced us to libraries, but they're turned off in Windows 10. Here's how to get them back.

Discover More

Understanding Action Center

Action Center provides you with a quick overview of security and maintenance issues and allows you to drill down to the ...

Discover More

Using Robocopy to Copy Entire Directories

It's simple to use Robocopy to copy entire directories. Dealing with directories is what it does best! This tip shows you ...

Discover More
More WindowsTips

What are the Limits on File Names?

It's good to know what the limits are when naming files, although in most cases the limits are sufficiently high that ...

Discover More

Configuring Windows to Do Backups on a Schedule

Performing regular backups of your system offers you peace of mind because you don't have to worry about data loss in the ...

Discover More

Restoring from a Backup

Being able to restore from a backup is just as important as making the backup in the first place. This tip tells you how ...

Discover More
Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 2 + 2?

2015-10-07 05:01:42

Dennis

Can you do this if Windows came pre-installed and you don't have a Windows disk?


Newest Tips