格式化 USB 驱动器

格式化 USB 驱动器

我有一个 USB 闪存驱动器。使用 Windows 7 格式化驱动器时失败,并显示以下消息:

Windows无法完成格式化

我可以使用 Windows 磁盘管理器查看驱动器,但它显示它具有 RAW 文件系统,并且每当我尝试第二次重新格式化它时,它只会说找不到文件或分区。使用 DiskPart 时,我的运气也不太好,因为尝试使用 FORMAT 命令会导致错误。这些是我使用的命令及其输出。

C:\>DISKPART

Microsoft DiskPart version 6.1.7601
Copyright (C) 1999-2008 Microsoft Corporation.
On computer: WINROID-PC

DISKPART> LIST DISK

  Disk ###  Status         Size     Free     Dyn  Gpt
  --------  -------------  -------  -------  ---  ---
  Disk 0    Online          149 GB      0 B
  Disk 1    Online         3816 MB      0 B
DISKPART> SELECT DISK 1

Disk 1 is now the selected disk.

DISKPART> DETAIL DISK
SKYMEDI USB Drive USB Device
Disk ID: 00000001
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     G                RAW    Removable   3816 MB  Healthy

DISKPART> SELECT VOLUME 4
Volume 4 is the selected volume.
DISKPART> FORMAT RECOMMENDED OVERRIDE
    0 percent completed

DiskPart has encountered an error: The parameter is incorrect.
See the System Event Log for more information.

DISKPART> FORMAT FS=NTFS LABEL="Windows7" QUICK COMPRESS
    0 percent completed

DiskPart has encountered an error: The parameter is incorrect.
See the System Event Log for more information.
DISKPART> clean all

DiskPart has encountered an error: The system cannot find the file specified.
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> convert mbr

DiskPart successfully converted the selected disk to MBR format.

DISKPART> create partition primary

DiskPart has encountered an error: The system cannot find the file specified.
See the System Event Log for more information.

DISKPART>

正如你所见,没有运气。我在谷歌上搜索了很多,但没有一个让我满意的答案。我也遵循这些脚步.但没有解决办法。

当我插入驱动器时,计算机发出哔哔声,好像它识别了什么东西,但我的电脑中什么也没有出现

我该如何格式化磁盘以便再次使用它?

答案1

在 Windows 上使用 cmd 将 USB 格式化为 NTFS

按下 Windows 徽标键并输入 cmd,然后按 Enter。

我假设您不是技术人员,但您也不害怕命令提示符(cmd)。

在提示符下按以下顺序逐个输入以下命令:

diskpart

这将显示可用的磁盘和每个磁盘的大小,帮助您在下一步中选择正确的磁盘:

list disk

用磁盘编号替换x,最有可能的是这个 k 编号 1,您可以通过上一步中显示的磁盘大小知道):

select disk x

clean

create partition primary 

执行此命令将需要几分钟,您将看到以百分比显示的格式化进度,一旦过程显示完成,请输入最后一条命令:

格式化 fs=NTFS 快速

出口

希望你的 USB 已经修好了。

答案2

我也遇到了同样的情况。参考某人的意见,你可以替换命令干净的全部清除.最后,我得到了格式 fs=NTFS没有快。

相关内容