我有一个 USB 拇指驱动器,我打算用它来安装 Windows 7。在使用Windows 7 USB/DVD 下载工具它失败了,导致我的 USB 驱动器处于无法使用的状态。
我可以使用 Windows 磁盘管理器查看驱动器,但它显示它具有 RAW 文件系统,并且每当我尝试第二次重新格式化它时,它只会说找不到文件或分区。使用 DiskPart 时,我的运气也不太好,因为尝试使用该FORMAT
命令会导致错误。这些是我正在使用的命令及其输出。
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Windows\system32>diskpart
Microsoft DiskPart version 6.1.7601
Copyright (C) 1999-2008 Microsoft Corporation.
On computer: DYGEAR-PC
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
DISKPART> select disk 3
Disk 3 is now the selected disk.
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
DISKPART> select volume 4
Volume 4 is the selected volume.
DISKPART> FORMAT RECOMMENDED OVERRIDE
DiskPart has encountered an error: The system cannot find the file specified.
See the System Event Log for more information.
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.
DISKPART>
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
DISKPART> select disk 3
Disk 3 is now the selected disk.
DISKPART> clean all
DiskPart has encountered an error: Incorrect function.
See the System Event Log for more information.
DISKPART> list partition
There are no partitions on this disk to show.
DISKPART> online disk
Virtual Disk Service error:
This disk is already online.
DISKPART> attributes disk clear readonly
Disk attributes cleared successfully.
DISKPART> clean
DiskPart has encountered an error: Incorrect function.
See the System Event Log for more information.
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
DISKPART>
答案1
要尝试将 USB 驱动器恢复到可用状态,您应该尝试这些命令。
首先要注意的是,您应该在有权访问的计算机上安装 Windows 7,以便使用该diskpart
命令。您还需要在这台计算机上拥有管理员访问权限。
- 单击“开始球”。
cmd
在搜索框中输入。- Shift+ 右键单击 CMD 图标。
- 点击
Run as Administrator
。
从这里,我们将输入diskpart
并运行以下命令。
C:\Windows\system32>diskpart
Microsoft DiskPart version 6.1.7601
Copyright (C) 1999-2008 Microsoft Corporation.
On computer: DYGEAR-PC
DISKPART>
从这里我们将输入内容来list disk
查找当前连接到计算机的驱动器。
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
15GB 驱动器就是我们要找的驱动器,因为这是我们的 USB 拇指驱动器的大小。因此,要选择该驱动器,我们运行命令select disk 3
。
DISKPART> select disk 3
Disk 3 is now the selected disk.
如果您不确定这是否是您的驱动器,您可以在detail disk
选择磁盘后运行命令来请求有关该驱动器的详细信息。
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
有了正确的驱动器后,我们可以通过执行以下操作来选择驱动器上的任何分区select volume
,然后像我们的例子一样选择卷号select volume 4
。
DISKPART> select volume 4
Volume 4 is the selected volume.
从这里开始,我们将尝试将驱动器恢复到可用状态。我们将首先尝试重新格式化驱动器。FORMAT RECOMMENDED OVERRIDE
这是将驱动器格式化回正常状态的最安全方法。
DISKPART> FORMAT RECOMMENDED OVERRIDE
DiskPart has encountered an error: The system cannot find the file specified.
See the System Event Log for more information.
如果这不起作用,如上所示,我们可以尝试运行格式化命令,告诉它如何在我们使用的情况下格式化驱动器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.
在我们的例子中,这仍然不起作用。因此,我们尝试使用命令清理整个驱动器CLEAN ALL
。
DISKPART> clean all
DiskPart has encountered an error: Incorrect function.
See the System Event Log for more information.
如果此时驱动器仍然有问题,我们尝试再次列出分区,查看驱动器是否发生了任何更改LIST PARTITION
。
DISKPART> list partition
There are no partitions on this disk to show.
由于已经发生改变,我们看看是否能够使用 使驱动器上线ONLINE DISK
。
DISKPART> online disk
Virtual Disk Service error:
This disk is already online.
由于驱动程序处于在线状态,我们现在可以尝试清除可能妨碍我们的任何属性,例如只读属性。我们运行ATTRIBUTES DISK CLEAR READONLY
。
DISKPART> attributes disk clear readonly
Disk attributes cleared successfully.
我们来看看是否可以用 把引导记录放在那里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
如上所述,从那时起,所有这些命令都失败了。所以我们应该尝试最后一件事来让驱动器重新工作。在这种情况下,你应该做的是卸载 USB 拇指驱动器的驱动程序,然后在重新启动计算机后重新安装驱动程序。
查看格式实用程序SD-CARD 组织。
或者你可以尝试使用Windows 98 启动盘使用后Lexar 的 USB 翻转可移动介质位工具。
答案2
使用HP Drive Key 启动实用程序或者HP USB 磁盘存储格式化工具 2.2.3、命令行或GUI版本。
答案3
我遇到过类似的情况。USB 似乎也显示为 F: 和 G:。我尝试了上述许多解决方案,但简单的重启对我来说有效。然后我可以在 diskpart 中运行以下命令来格式化磁盘(这样做会删除磁盘上的所有数据):
list disk
select disk X
clean
convert mbr
create partition primary
format fs=fat32 QUICK
exit
确保将 X 替换为您的 USB 编号。可以使用第一个命令获取此编号,该命令显示连接到系统的所有磁盘。从此列表中,您可以确定显示的磁盘中哪个是您的 USB,然后将编号复制到上述命令集中的 X 位置。请确保选择正确的磁盘,否则您可能会意外擦除其他磁盘(例如硬盘)的内容。
答案4
这是由一位匿名用户编辑发布的,但似乎不太合适,因此我将在此处重新发布:
我可以帮助你,我有解决方案,很简单(它发生在我身上),我尝试了大量的工具(Windows 和 Linux)来修复它,但解决方案非常简单,只需使用 Windows XP CD 启动,就像你想安装一样,当它要求你选择并分区磁盘以安装 Windows XP 时,只需删除所有 USB 磁盘分区,然后创建一个新的,然后,当你点击继续时它无法格式化驱动器,因此继续返回 Windows 7/8 并以管理员身份启动 cmd,然后启动 diskpart,然后选择卷,然后分配字母,然后如果你想使用 Windows 磁盘管理员,请转到并单击你的 USB,它会让你格式化你的磁盘,就这样,享受它。*