How to Create Bootable USB Drive (With Windows XP, Vista, Windows 7)
This article shows you how to create a bootable USB Flash drive that you can put any bootable Windows Operating System.
Introduction
A bootable USB drive is a very handy tool. It allows for much faster install than from cd/dvd drive(personal testing showed about 25% less time to install). You can also use it to install an operating system on a computer with incompatible/no cd/dvd drive such as a netbook.
Personally, I tried installing Windows 7. I run Windows xp on my main partition, but theres no way to upgrade from xp, and for whatever reason during install, the windows 7 installer said I did not have the drivers for my dvd drive. So I set out to find a solution to that, which is what I will be sharing with you.
Getting Started
First, make sure you have a flash drive that is the appropriate size. Most likely this will be at least 4GB for Windows Vista or Windows 7. You can likely fit an XP install on a 1GB flash drive.
Note: This will erase all data on the usb drive. Backup any data you wish to save.
Instructions
Run the command prompt. To do this go to "Start->Run". Type in "cmd". Or simply search the start menu for "cmd".
Formatting the drive (Windows Vista/Windows 7 instructions)
We will be using diskpart.exe to change the properties of the usb drive. This should be included on any Windows Operating System.
Type in the following commands:
diskpart
Comment: The "diskpart" command will open the diskpart.exe command prompt tool.
disk list
Comment: The "disk list" command will list all you main disks. After you run this command, find the number of the usb drive you wish to use. I will call this disk x for future reference.
select disk x
Comment: The "select disk x" (where x is the disk numer obtained from the previous command) command will select your chosen disk. (Example: select disk 2). You will see a message that says your disk is selected.
clean
create partition primary
active
select partition 1
format fs=NTFS
assign
exit
Comment: Run all these commands sequetially. The format command may take a while depending on the size of the drive.
Formatting the Drive in Windows XP (skip to "Make Drive Bootable" if this does not apply to you)
Windows xp has some issues with the above instructions. For whatever reason, many usb drives are not recognized as "disks" with diskpart.exe. Rather they are only "volumes" which can not be set to active primary partitions.
Right click the USB drive in Windows Explorer and click format. Format to NTFS if possible, if not then fat32 is fine.
We will use a special tool that you can download to fix the aformentioned problem. Download MBRWizard.
Go to a command prompt and navigate to the folder that contains mbrwizard.exe using the cd command.
Example:
cd C:\MBRWizard
Now run mbrwizard with the command:
mbrwiz \list
Comment: This will list all disk, including usb drives. Take note of the number of the usb drive you wish to use.
mbrwiz /disk=a /active=a
Comment: a is the number of the usb drive obtained above.
Make Drive Bootable
Insert your CD/DVD or mount your iso containing your bootable Windows install. Open the command prompt again and use the "cd" command to navigate to the Windows install files.
Example:
cd /d F:\boot
Comment: This will change the directory to the drive labeled F and go to the boot folder. Use the appropriate letter for your case.
From the windows install boot folder, use the bootsect command to set the usb drive as bootable. The following example uses G as the drive letter of the usb drive
bootsect /nt60 G:
Comment: G is the letter of the usb drive.
Copy Installer Files
Now copy the entire contents of the windows install disk or iso to the flash drive(not the iso file itself, you will need to mount the iso or extract the files).
Set Bios to Boot from USB Drive
Go to the bios and change the boot order so that you boot from the usb drive first. Save and restart, and you are set! If you do not know how to do this, refer to your motherboard's documentation.
-
RationalPlan Project Management Software v3.14 Internationalization And Outlook Integration
| By IoanLucian | in Management
RationalPlan v3.14 added Outlook integration for iCalendar .ics files when sending emails with assignments to resou...
-
good hard drive defragment program.
| By Ekse | in Computers
pretty good free defrag program for your pc...
-
How to Format a drive for Mac and Windows
| By kwaxkwax | in General
This article will help you to format an external drive and make it readable and writeable from Windows and Mac...
-
A Safer Way to Recover Damaged Partitions
| By Reverb | in Computers
A safe way to automatically recover damaged disks and partitions....
-
All About Data Recovery
| By Pipshower | in Computers
At some point in time, everyone who owns a computer will experience the trials and tribulations of hard drive failu...
-
XA Transaction - Solution for Transaction More Than One Database | By H4d1 | in Programming
Have you ever think that it's too difficult for making database transaction in two different places (or databases) ...
-
Javascript functions for : trim, right trim, left trim, no Apostrophe, is Empty , is Digit , VarChar To Number , is integer , check Is Zero , Get Que | By xxris | in Programming
Javascript functions for : trim, right trim, left trim, no Apostrophe, is Empty , is Digit , VarChar To Number , i...
-
How to access and use a Window's command line | By MaxwellPayne | in Programming
Learn about the Window's command line in DOS and how to use it....
-
How to Learn to Program Your Computer | By dsj8760 | in Programming
This article is about learning to program a computer. It is a general article giving tips on how to learn about pro...
-
Jailbroken iPhones get RickRolled | By explorer | in Programming
First iPhone worm, attacks via SSH and does the classic rick roll gag on the user....
-
Learning Linux -- The basics | By koolmelee1 | in Software
Have you wanted to be good at the linux command prompt, but never bothered learning how to use it? This guide intro...
-
Healthy Living Tips -- Lose Weight and Feel Better | By koolmelee1 | in Diet & Nutrition
Have you let your weight get out of hand? I share some tips on how to lose weight one step at a time....
-
C# Tutorial - Lesson 2: Enumerations | By koolmelee1 | in Programming
C#, much like any other high level programming language, provides for enumerated types. This article explains what ...
-
C# Tutorials - Lesson 1 : Basic Data Types and Variables (int, double, float, etc...) | By koolmelee1 | in Programming
C# has many options to choose from as far as primitive data types go. This tutorial will give a summary of each, as...
-
C# Tutorials - Lesson 0: Your First C# Application (Hello World) | By koolmelee1 | in Programming
This tutorial is intended for those who want to learn C# using Visual Studios. We will discover how to write and ru...








No comments yet.