我意外损坏了我的 USB 密钥,diskpart.exe
因此 diskpart 和分区管理器都无法识别该设备。
然而,当我将密钥插入我的 Mac 时,Mac 立即表示无法识别该设备,并显示一个超级简单的按钮来“初始化”驱动器 - 这将打开磁盘工具,我可以在其中重新格式化驱动器。
我怎样才能在 Windows 上修复我的 USB 密钥?
我怎么会弄坏 USB 密钥呢?
我正在使用diskpart.exe
重新格式化 USB 密钥,然后我意识到我输入的是format ft=fat32
。format ft=fat32 quick
因此,我当然按下Ctrl-C
退出。
> list disk
[...]
> select disk 2
[...]
> clean
[...]
> create partition primary
[...]
> select partition 1
[...]
> active
[...]
> format fs=fat32
[ OOPS! Ctrl-C ]
重新启动后diskpart
,尝试重新格式化分区出现错误:
DISKPART> list disk
Disk ### Status Size Free Dyn Gpt
-------- ------------- ------- ------- --- ---
Disk 0 Online 931 GB 0 B *
Disk 2 Online 7633 MB 0 B
DISKPART> select disk 2
Disk 2 is now the selected disk.
DISKPART> select partition 1
Partition 1 is now the selected partition.
DISKPART> format fs=fat32 quick
Virtual Disk Service error:
A concurrent second call is made on an object before the first is completed.
DISKPART> format fs=fat32
Virtual Disk Service error:
A concurrent second call is made on an object before the first is completed.
于是我尝试运行clean
,结果导致 diskpart 挂起几秒钟,于是我按下了 Ctrl-C。这是一个错误。接下来的运行根本diskpart
无法显示该设备:
DISKPART> list disk
Disk ### Status Size Free Dyn Gpt
-------- ------------- ------- ------- --- ---
Disk 0 Online 931 GB 0 B *
我尝试移动端口并打开diskmgmt.msc
。没用!
我做过收到我的 USB 设备无法识别的通知,但没有可操作的步骤:
我该如何修复我的 USB 密钥?
我打开 Mac,插入设备,然后立即收到提示,说 Mac 无法识别该驱动器;它包含Initialize
驱动器的按钮,将我带到磁盘工具。
在磁盘工具中,我可以轻松擦除驱动器并使用 FAT 重新格式化它。
问题
我可以在 Windows 设备上做同样的修复吗?我所有的搜索都找到了像“打开设备管理器”或“卸载驱动程序”这样的诱饵结果。
谢谢!