代码之家  ›  专栏  ›  技术社区  ›  Vinit Bosamia

Diskpart选择问题[已关闭]

  •  -2
  • Vinit Bosamia  · 技术社区  · 7 年前

    cmd commands and response

    我正在使用可引导笔驱动器在电脑上重新安装windows 10。关于驱动器选择,我选择驱动器“磁盘分区3:windows”。我遇到了无法在该驱动器上安装windows的问题,错误为“windows无法安装在此驱动器上。该驱动器为GPT分区样式”

    为了解决这个问题,我需要清理这个drive-through cmd。但似乎是,即使键入了特定驱动器的确切名称,我也无法选择它。相反,如果选择磁盘0,则可以选择整个硬盘驱动器。

    我不想清洗整个硬盘。有人能帮我一下吗?Thanx提前。

    1 回复  |  直到 7 年前
        1
  •  0
  •   Lohmar ASHAR    7 年前

    关于如何使用diskpart:

    list disk # to see disks
    select disk 0 # to first select the disk
    

    那你就可以

    list part #to see partition 
    select part 3 # to select the partition you want 
    

    然后你可以删除它或其他任何东西。
    但我不确定这对你的问题是否有帮助。您面临的问题是“分区风格”GPT与MBR的对比。

    我找到了 this 它说明了如何将磁盘更改为MBR

    list disk
    select disk 0 # make sure of the right index
    convert mbr   # this will change the partition style
    quit