How To Make A Bootable USB

1. Open elevated Command Prompt. To do this, type in CMD in Start menu search field and hit Ctrl + Shift + Enter. Alternatively, navigate to Start > All programs >Accessories > right click on Command Prompt and select run as administrator.

2. When the Command Prompt opens, enter the following command:

DISKPART and hit enter.
LIST DISK and hit enter.

Once you enter the LIST DISK command, it will show the disk number of your USB drive.

3. In this step you need to enter all the below commands one by one and hit enter. As these commands are self explanatory, you can easily guess what these commands do.

SELECT DISK 1 (Replace DISK 1 with your disk number)
CLEAN
CREATE PARTITION PRIMARY
SELECT PARTITION 1
ACTIVE
FORMAT FS=NTFS
(Format process may take few seconds)
ASSIGN
EXIT

Don’t close the command prompt as we need to execute one more command at the next step. Just minimize it.

Now, mount your ISO file. ( Here i'll use G:\ as my mounted virtual drive, and H:\ as my USB)

Go back to command prompt and execute the following commands:

G:CD BOOT and hit enter. Where “G” is your mounted virtual drive letter.
CD BOOT and hit enter to see the below message.
BOOTSECT.EXE/NT60 H:

(Where “H” is your USB drive letter)


Comments