[Windows] Diskpart CMD工具 – MBR轉GPT指令教學

簡介

Diskpart是Windows下好用的磁碟管理指令工具,採用命令提示字元方式。


Windows安裝時使用

在Windows安裝程式中啟用命令提示字元:

Shift + F10

指令應用

- CMD Proccess of Clean and Format

diskpart(執行Diskpart公用程式)
list disk(確認隨身碟的磁碟代碼)
select disk #(指定工作磁碟,#為隨身碟代碼)
clean(清除所選的磁碟內容)
create partition primary(建立主分割區)
format fs=ntfs quick(格式化新磁區)
active(將該磁區設定為使用中)

- MBR轉成GPT

UEFI: Convert to GPT partition format after clean by DiskPart

diskpart
list disk
select disk <disk number>
clean
convert gpt
exit

- 格式化為MBR

Legacy BIOS Compatibility mode: Convert to MBR partition format after clean by DiskPart

diskpart
list disk
select disk <disk number>
clean
exit

範例

查詢磁碟列表及狀況

透過list disk查詢範例:

  Disk ###  Status         Size     Free     Dyn  Gpt
  --------  -------------  -------  -------  ---  ---
* Disk 0    Online          476 GB  1024 KB        *

以上可得知該磁碟為GPT格式

在選定磁碟select disk 0後,可以利用list partition查看分割區,

list volume來查看Volumes:

  Volume ###  Ltr  Label        Fs     Type        Size     Status     Info
  ----------  ---  -----------  -----  ----------  -------  ---------  --------
  Volume 0     F                       DVD-ROM         0 B  No Media
  Volume 1     C   SYSTEM       NTFS   Partition     66 GB  Healthy    Boot
  Volume 2                      RAW    Partition     29 GB  Healthy
  Volume 3     D   DATA         NTFS   Partition    371 GB  Healthy
  Volume 4     E   DRIVERS      NTFS   Partition      9 GB  Healthy
  Volume 5         修復           NTFS   Partition    499 MB  Healthy    Hidden
  Volume 6                      FAT32  Partition    100 MB  Healthy    System

detail {object}可以查詢細節。

Leave a Reply

Your email address will not be published. Required fields are marked *