ディスク管理とDISKPARTでは、リムーバブルメディア上のパーティションを削除することはできません。しかし、DISKPART の clean
コマンドを使って、パーティションを削除してやり直すことができます。
DISKPART> list disk
Disk ### Status Size Free Dyn Gpt
-------- ---------- ------- ------- --- ---
Disk 0 Online 40 GB 0 B
Disk 1 Online 7538 MB 0 B
DISKPART> select disk 1
Disk 1 is now the selected disk.
DISKPART> list part
Partition ### Type Size Offset
------------- ---------------- ------- -------
Partition 1 Primary 500 MB 1024 KB
DISKPART> clean
DiskPart succeeded in cleaning the disk.
DISKPART> create part primary size=500
DiskPart succeeded in creating the specified partition.
DISKPART> active
DiskPart marked the current partition as active.
DISKPART> format fs=fat quick
100 percent completed
DiskPart successfully formatted the volume.
DISKPART> assign
DiskPart successfully assigned the drive letter or mount point.
これはディスク上に唯一の500MBのFATパーティションを作成します。 list part
は正しいディスクを選択したことを確認するためにのみ使用されます(表示されているサイズは以前の試みのものです。)