To create a bootable USB drive in windows, follow the steps provided below:

Step 1: Insert your USB drive into the computer. Ensure that there is no important data on the USB drive.

Step 2: Type “cmd” in the search bar of the Start menu.

Step 3: Right-click on the Command Prompt icon in the search results and select “Run as Administrator.”

Step 4: The Command Prompt window will open. Type the following commands and follow the instructions:

DISKPART
LIST DISK

These commands will display a list of drives connected to your system. Identify your USB drive in the list. Let’s assume your USB drive is listed as Disk 1.

SELECT DISK 1
CLEAN
CREATE PARTITION PRIMARY
SELECT PARTITION 1
ACTIVE
FORMAT FS=NTFS

Formatting the drive may take some time. Please be patient.

ASSIGN
EXIT

Congratulations! You have successfully created a bootable USB drive.

Thank you.

Leave a Reply