Shrink / Extend a basic volume use Diskpart on Windows

Cập nhật ngày 22/03/2024
Lượt xem: 53

Chia phân vùng bằng lệnh Diskpart

Mở PowerShell với quyền Adminstrator

Liệt kê các ổ đĩa có trên máy

diskpart

DISKPART> list disk

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

Chọn ổ đĩa bạn muốn quản lý phân vùng, liệt kệ danh sách Volume

DISKPART> select disk 0
DISKPART> list volume

 Volume ###  Ltr  Label        Fs     Type        Size     Status     Info
  ----------  ---  -----------  -----  ----------  -------  ---------  --------
  Volume 0     C                NTFS   Partition    476 GB  Healthy    Boot
  Volume 1                      FAT32  Partition    100 MB  Healthy    System
  Volume 2                      NTFS   Partition    509 MB  Healthy    Hidden

Chọn Volume bạn muốn quản phân vùng

DISKPART> select volume 0

Shink (Tách phân vùng)

Tách 1024MB từ phân vùng đã chọn

DISKPART> shrink desired=1024

Thu nhỏ phân vùng đã chọn còn 10240MB

DISKPART> shrink minimum=10240

Đọc thêm: https://docs.microsoft.com/en-us/windows-server/storage/disk-management/shrink-a-basic-volume

Extend (Gộp phân vùng)

Gộp 1024MB phân vùng trống vào phân vùng đã chọn

extend size=1024

Nếu không có tham số size nó sẽ gộp hết các dung lượng trống còn thừa

extend

Đọc thêm: https://docs.microsoft.com/en-us/troubleshoot/windows-server/backup-and-storage/extend-data-volume