Remove Partitions
Today I learned how to remove partition from a thumb drive (which I was way too excited about).
Open a command prompt, run diskpart
, then list disk
, select your USB thumbdrive with select disk X
(where X cooresponds to your device. Check the size to verify you're picking the right one),
look at existing partitions with list partition
.
From here you can either go through and delete what you want using select
and delete
commands or use
clean
if you dont want to select each partition.
Once you're done with that, use create partition primary
and youre
done! Exit with the exit
command.
I love sysadmin skills, lol!