make USB active partition

MDJDCarter

New Member
The first time I tried to make a bootable USB stick with Easy USB Creator Lite, I received an error message telling me that I needed to make the USB partition active. The technique to do that is as follows:

1. Open a Command Prompt by typing "WindowsKey + R"
2. Type "diskpart" <enter>
3. Type "list disk" <enter> Note the number under ### for your USB stick.
4. Type "select disk 'X'" <enter> 'X' is the number from step 3.
5. Type "clean" <enter> This deletes all data from the flash drive
6. Type "create partition primary" <enter>
7. Type "select partition 1" <enter>
8. Type "format fs=fat32 quick" <enter> You could also format as "ntfs" but if your system uses UEFI, you must go with "fat32".
9. Type "active" <enter>
10. Type "exit" <enter> to close the window then eject your drive and you are done.
 
Back
Top