Luego de de esta larga selección de datos hemos podido solucionar este inconveniente que tienen ciertos los usuarios. Te brindamos la solución y nuestro objetivo es servirte de mucha apoyo.
Solución:
Para intentar recuperar una unidad USB a su estado utilizable, debe probar estos comandos.
Primero debe tenerse en cuenta que debe tener Windows 7 instalado en una computadora a la que tenga acceso, para que pueda usar el diskpart
mando. También necesitará tener acceso de administrador en esta computadora.
- Haga clic en el orbe de inicio.
- Escribe
cmd
en el cuadro de búsqueda. - Cambio + Haga clic derecho en el icono de CMD.
- Haga clic en
Run as Administrator
.
Desde aquí, vamos a escribir diskpart
y ejecute los siguientes comandos.
C:Windowssystem32>diskpart
Microsoft DiskPart version 6.1.7601
Copyright (C) 1999-2008 Microsoft Corporation.
On computer: DYGEAR-PC
DISKPART>
Desde aquí vamos a escribir list disk
para encontrar las unidades actuales conectadas a la computadora.
DISKPART> list disk
Disk ### Status Size Free Dyn Gpt
-------- ------------- ------- ------- --- ---
Disk 0 Online 14 GB 0 B
Disk 1 Online 74 GB 0 B
Disk 2 Online 698 GB 0 B *
Disk 3 Online 15 GB 0 B
La unidad de 15 GB es la unidad que estamos buscando, ya que ese es el tamaño de nuestra unidad de memoria USB. Entonces, para seleccionar esa unidad, ejecutamos el comando select disk 3
.
DISKPART> select disk 3
Disk 3 is now the selected disk.
Si no está seguro de si esta es su unidad, puede solicitar detalles sobre la unidad ejecutando el comando detail disk
después de haber seleccionado el disco.
DISKPART> detail disk
Corsair Voyager Mini USB Device
Disk ID: 00000000
Type : USB
Status : Online
Path : 0
Target : 0
LUN ID : 0
Location Path : UNAVAILABLE
Current Read-only State : No
Read-only : No
Boot Disk : No
Pagefile Disk : No
Hibernation File Disk : No
Crashdump Disk : No
Clustered Disk : No
Volume ### Ltr Label Fs Type Size Status Info
---------- --- ----------- ----- ---------- ------- --------- --------
Volume 4 Removable 15 GB Healthy
Una vez que tengamos la unidad correcta, podemos seleccionar cualquier partición en la unidad seleccionando haciendo select volume
y luego el número de volumen como en nuestro caso select volume 4
.
DISKPART> select volume 4
Volume 4 is the selected volume.
Desde aquí, intentaremos recuperar la unidad a un estado utilizable. Primero intentaremos reformatear la unidad. FORMAT RECOMMENDED OVERRIDE
es la forma más segura de volver a formatear la unidad a su estado normal.
DISKPART> FORMAT RECOMMENDED OVERRIDE
DiskPart has encountered an error: The system cannot find the file specified.
See the System Event Log for more information.
Si eso no funciona, como se muestra arriba, podemos intentar ejecutar un comando de formato que le diga cómo formatear la unidad en nuestro caso usamos FORMAT FS=NTFS LABEL="Windows7" QUICK COMPRESS
.
DISKPART> FORMAT FS=NTFS LABEL="Windows7" QUICK COMPRESS
DiskPart has encountered an error: The system cannot find the file specified.
See the System Event Log for more information.
En nuestro caso, esto todavía no funciona. Entonces intentamos limpiar todo el disco con el comando CLEAN ALL
.
DISKPART> clean all
DiskPart has encountered an error: Incorrect function.
See the System Event Log for more information.
Si todavía tenemos problemas con la unidad en este momento. Intentemos y enumeremos las particiones nuevamente, veamos si se han realizado cambios en la unidad con LIST PARTITION
.
DISKPART> list partition
There are no partitions on this disk to show.
Como ha habido un cambio, veamos si podemos poner la unidad en línea con ONLINE DISK
.
DISKPART> online disk
Virtual Disk Service error:
This disk is already online.
Como el controlador está en línea, ahora podemos intentar borrar cualquier attributes que podría estar en nuestro camino, como el de solo lectura attribute. Corremos ATTRIBUTES DISK CLEAR READONLY
.
DISKPART> attributes disk clear readonly
Disk attributes cleared successfully.
Veamos si podemos poner un registro de arranque allí con CONVERT MBR
.
DISKPART> convert mbr
DiskPart successfully converted the selected disk to MBR format.
DISKPART> create partition primary
DiskPart succeeded in creating the specified partition.
DISKPART> select part 1
Partition 1 is now the selected partition.
DISKPART> active
DiskPart marked the current partition as active.
DISKPART> format fs=NTFS label=USB quick
DiskPart has encountered an error: The system cannot find the file specified.
See the System Event Log for more information.
DISKPART> format quick
DiskPart has encountered an error: The system cannot find the file specified.
See the System Event Log for more information.
DISKPART> assign letter F
DiskPart has encountered an error: The system cannot find the file specified.
See the System Event Log for more information.
DISKPART> list volume
Volume ### Ltr Label Fs Type Size Status Info
---------- --- ----------- ----- ---------- ------- --------- --------
Volume 0 V Video NTFS Simple 698 GB Healthy
Volume 1 D SSD NTFS Partition 14 GB Healthy
Volume 2 System Rese NTFS Partition 100 MB Healthy System
Volume 3 C NTFS Partition 74 GB Healthy Boot
* Volume 4 Removable 15 GB Healthy
Como se señaló, todos estos comandos fallaron desde ese punto. Así que deberíamos intentar una última cosa para que la unidad vuelva a funcionar. En este caso, lo que debe hacer es desinstalar los controladores de la unidad flash USB y luego reinstalar los controladores nuevamente después de reiniciar su computadora.
Eche un vistazo a la utilidad de formato de la organización SD-CARD.
O puede intentar usar un disco de arranque de Windows 98 después de usar la herramienta USB Flip the Removable Media Bit de Lexar.
Utilice HP Drive Key Boot Utility o HP USB Disk Storage Format Tool 2.2.3, versión de línea de comandos o GUI.
La publicación de Mark Tomlin no me ayudó, fdisk de Linux sí lo hizo.
fdisk /dev/sdX
Esto le dará el indicador de fdisk:
Command (m for help):
Es intuitivo y puede utilizar las siguientes opciones:
c (to activate DOS-mode, although it may not be necessary)
n (to create a new partition, fdisk will suggest sane values like partititon number and size - for a thumb-drive you'll most like want a full-disk partition, so you'll mostly press here)
t (choose c for a FAT 32 (LBA) partition type)
a (optional, to flag the pen-drive as bootable)
w (to write changes to disk and exit)
Y tu estas listo. Obviamente, este procedimiento destruir todos los datos en su memoria USB, pero la pregunta original se refiere a la recuperación de una unidad “muerta” a un estado utilizable, no a recuperar su contenido. (comentaría la respuesta de James T, pero aparentemente necesito más puntos que para escribir una respuesta)
Eres capaz de añadir valor a nuestra información cooperando tu veteranía en las referencias.