web-dev-qa-db-fra.com

Impossible de supprimer la partition dans diskpart - argument non valide?

J'essaie de supprimer une partition sur un disque mémoire flash USB à l'aide de Diskpart. Je l'exécute à travers une invite CMD élevée. Mais le problème est qu'il indique que j'utilise un argument invalide. S'il vous plaît voir le journal ci-dessous.

Microsoft Windows [Version 6.3.9600]
(c) 2013 Microsoft Corporation. All rights reserved.

C:\WINDOWS\system32>diskpart

Microsoft DiskPart version 6.3.9600

Copyright (C) 1999-2013 Microsoft Corporation.
On computer: SKANNING24

DISKPART> list disk

  Disk ###  Status         Size     Free     Dyn  Gpt
  --------  -------------  -------  -------  ---  ---
  Disk 0    Online          465 GB  1024 KB        *
  Disk 1    Online         3819 MB  3670 MB        *

DISKPART> select disk 1

Disk 1 is now the selected disk.

DISKPART> list partition

  Partition ###  Type              Size     Offset
  -------------  ----------------  -------  -------
  Partition 1    Primary             49 MB    64 KB
  Partition 2    System              98 MB    51 MB

DISKPART> select partition 1

Partition 1 is now the selected partition.

DISKPART> list partition

  Partition ###  Type              Size     Offset
  -------------  ----------------  -------  -------
* Partition 1    Primary             49 MB    64 KB
  Partition 2    System              98 MB    51 MB

DISKPART> delete

Microsoft DiskPart version 6.3.9600

DISK        - Delete a missing disk from the disk list.
PARTITION   - Delete the selected partition.
VOLUME      - Delete the selected volume.

DISKPART> delete partition 1

The arguments specified for this command are not valid.
For more information on the command type: HELP DELETE PARTITION

DISKPART> list partition

  Partition ###  Type              Size     Offset
  -------------  ----------------  -------  -------
* Partition 1    Primary             49 MB    64 KB
  Partition 2    System              98 MB    51 MB

DISKPART> select partition 2

Partition 2 is now the selected partition.

DISKPART> list partition

  Partition ###  Type              Size     Offset
  -------------  ----------------  -------  -------
  Partition 1    Primary             49 MB    64 KB
* Partition 2    System              98 MB    51 MB

DISKPART> delete partition 2

The arguments specified for this command are not valid.
For more information on the command type: HELP DELETE PARTITION

DISKPART> help delete partition

    Deletes the partition with focus.

Syntax:  DELETE PARTITION [NOERR] [OVERRIDE]

    NOERR       For scripting only. When an error is encountered, DiskPart
                continues to process commands as if the error did not occur.
                Without the NOERR parameter, an error causes DiskPart to exit
                with an error code.

    OVERRIDE    Enables DiskPart to delete any partition regardless of type.
                Typically, DiskPart only permits you to delete known data
                partitions.

    You cannot delete the system partition, boot partition, or any partition
    that contains the active paging file or crash dump (memory dump) filed.

    A partition must be selected for this operation to succeed.

    Partitions cannot be deleted from dynamic disks or created on dynamic
    disks.

Example:

    DELETE PARTITION

DISKPART> list partition

  Partition ###  Type              Size     Offset
  -------------  ----------------  -------  -------
  Partition 1    Primary             49 MB    64 KB
* Partition 2    System              98 MB    51 MB

DISKPART> delete partition 2 override

The arguments specified for this command are not valid.
For more information on the command type: HELP DELETE PARTITION

DISKPART>

Q: Quel est le "argument" dans ce cas? Et pourquoi n'est-ce pas valable?

Ce n'est pas la première fois que j'utilise Diskpart, je l'ai déjà utilisé plusieurs fois auparavant, chaque fois qu'il y avait des partitions de récupération cachées spéciales sur un lecteur de disque qui ne pouvaient pas être supprimées avec des outils de disque conventionnels tels que Diskmgmt.msc. Donc, je suis à peu près sûr d'avoir la syntaxe correcte et de tout faire en fonction des pages d'aide.

Je travaille sur Windows 8.1 et l'UFD est un SanDisk Cruzer Blade 4 Go, tout neuf. PassMark Memtest86 y était installé et c'est à peu près tout ce pour quoi je l'ai utilisé. J'ai formaté l'UFD aujourd'hui pour supprimer Memtest86 (format rapide dans l'Explorateur), mais une partition EFI cachée était laissée sur l'UFD. Voir la capture d'écran ci-dessous.

a

5
Samir

Argument invalide! Je l'ai maintenant.

Il n'est pas nécessaire d'ajouter la commande avec le numéro de la partition lorsque celle-ci est déjà sélectionnée.

Au lieu de:

select partition 2
delete partition 2 override

Utilisez ceci:

select partition 2
delete partition override

Aussi simple que cela...

Microsoft Windows [Version 6.2.9200]
(c) 2012 Microsoft Corporation. Med ensamrätt.

C:\Windows\system32>diskpart

Microsoft DiskPart version 6.2.9200

Copyright (C) 1999-2012 Microsoft Corporation.
On computer: SKANNING26

DISKPART> list disk

  Disk ###  Status         Size     Free     Dyn  Gpt
  --------  -------------  -------  -------  ---  ---
  Disk 0    Online          698 GB      0 B        *
  Disk 1    Online         3819 MB  3670 MB        *

DISKPART> select disk 1

Disk 1 is now the selected disk.

DISKPART> list partition

  Partition ###  Type              Size     Offset
  -------------  ----------------  -------  -------
  Partition 1    Primary             49 MB    64 KB
  Partition 2    System              98 MB    51 MB

DISKPART> select partition 1

Partition 1 is now the selected partition.

DISKPART> delete partition 1

The arguments specified for this command are not valid.
For more information on the command type: HELP DELETE PARTITION

DISKPART> delete partition

DiskPart successfully deleted the selected partition.

DISKPART> list partition

  Partition ###  Type              Size     Offset
  -------------  ----------------  -------  -------
  Partition 2    System              98 MB    51 MB

DISKPART> select partition 2

Partition 2 is now the selected partition.

DISKPART> delete partition

Virtual Disk Service error:
Det går inte att ta bort en skyddad partition utan att parametern Tvinga skyddad
 har angetts.


DISKPART> list partition

  Partition ###  Type              Size     Offset
  -------------  ----------------  -------  -------
* Partition 2    System              98 MB    51 MB

DISKPART> delete partition override

DiskPart successfully deleted the selected partition.

DISKPART> list partition

There are no partitions on this disk to show.

DISKPART>

a

7
Samir