How to make a bootable usb key

Опубликовано: 25 Апрель 2026
на канале: Kuyang TJ
109
0

This is how to make a bootable USB installer.

1. Right click Command Prompt and select Run as administrator.
2. Type "diskpart" then press Enter.
3. To view all your disk, type "list disk" then press Enter.
4. To select which disk you want to use, type "select disk #" (# is the number of the disk you want to use, so in my case it's disk 2) then press Enter.
5. Clean the disk by typing "clean" then press Enter.
6. To create partition primary, type "create partition primary" then press Enter.
7. Select partition 1 by typing "select partition 1" then press Enter.
8. To activate disk , type "active" then press Enter.
9. Format the disk with file system fat32 (quick format) by typing "format fs=fat32 quick" then press Enter.
10. To assign a drive letter, type "assign" then press Enter.
11. IMPORTANT: You must exit, to do that, type "exit" then press Enter.
12. Copy all the files and folders in your install disk and you're done!