我有一个基于 efi 的 64 位系统,预装了 win 8。我想降级到 32 位 win 7,所以我启动了一个可启动的 win 7 usb,并用 shift+f10 打开命令提示符。我在磁盘 0(应该是 gpt)上使用 convert mbr 命令,它显示:“指定的磁盘不可转换。cdrom 和 dvd 是不可转换磁盘的示例”
现在,我还没有清理磁盘,所以这可能解释了错误。但是,如果真是这样,我想会出现不同的错误消息,而且我不想要一台没有操作系统的笔记本电脑。此外,我无法输入“修复您的计算机”,因为它说系统恢复选项不兼容。这是怎么回事?我肯定也想出于其他原因转换为 mbr。
答案1
您必须删除所有分区。这是 Windows 磁盘管理的限制。
之后,您可以使用convert mbr
。但由于您无论如何都必须删除所有分区,clean
因此速度更快,并且还会删除分区方案。
是的,这正是您在非空磁盘上会收到的确切错误消息:
DISKPART> list partition
Partition ### Type Size Offset
------------- ---------------- ------- -------
Partition 1 Reserved 32 MB 17 KB
Partition 2 Primary 2014 MB 32 MB
DISKPART> convert mbr
Virtual Disk Service error:
The specified disk is not convertible. CDROMs and DVDs
are examples of disks that are not convertable.
另一方面,如果磁盘是空的:
DISKPART> list partition
There are no partitions on this disk to show.
DISKPART> convert mbr
DiskPart successfully converted the selected disk to MBR format.