Supprimer une ou des partitions sur un support de stockage à l'aide de l'outil diskpart en ligne de commande sous Windows.
Ça m'a été bien utile après avoir tenté de créer une clé USB bootable et interrompu le processus en cours de route. Je me retrouvais avec une partition de 2 Mo et tout le reste en non-alloué.
Je me recopie ici la procédure.
Open an elevated command prompt.
$ diskpart
$ list disk
Note the disk number that corresponds to your USB drive (it should be obvious going by size)
$ select disk X
$ list partition
There should be two, numbered 0 and 1, each about 7 GB
$ select partition 0
$ delete partition
$ select partition 1
$ delete partition
$ create partition primary
$ exit
Exit Command Prompt (type exit or just close the window)
In Windows, go to Computer and try to open the disk. It will ask you to format it.
Format it with the default settings and give it a name if you want.