Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
Managing disk volumes is a crucial aspect of maintaining a healthy and efficient Windows operating system. Whether you need to create, resize, or delete volumes, Windows provides both graphical and command-line tools to achieve these tasks. This article will guide you through the process of managing disk volumes using Disk Management and Command Line tools like DiskPart.
Disk Management is a built-in tool in Windows that allows you to manage disk volumes through a graphical interface. Here are the steps to perform common tasks:
Open Disk Management:
Win + X
and select Disk Management
.Select Unallocated Space:
Create New Simple Volume:
New Simple Volume
and follow the wizard to specify the volume size, assign a drive letter, and format the volume.Open Disk Management:
Win + X
and select Disk Management
.Select the Volume to Resize:
Extend or Shrink Volume:
Extend Volume
or Shrink Volume
and follow the wizard to specify the new size.For those who prefer command-line interfaces, DiskPart is a powerful tool for managing disk volumes.
Open Command Prompt as Administrator:
Win + X
and select Command Prompt (Admin)
.Launch DiskPart:
diskpart
and press Enter.List Disks:
list disk
to display all available disks.Select Disk:
select disk <disk_number>
to select the disk where you want to create the volume.Create Partition:
create partition primary size=<size_in_MB>
to create a new partition.Format and Assign Drive Letter:
format fs=ntfs quick
to format the partition.assign letter=<drive_letter>
to assign a drive letter.Open Command Prompt as Administrator:
Win + X
and select Command Prompt (Admin)
.Launch DiskPart:
diskpart
and press Enter.List Volumes:
list volume
to display all volumes.Select Volume:
select volume <volume_number>
to select the volume you want to resize.Extend Volume:
extend size=<size_in_MB>
to extend the volume.Shrink Volume:
diskpart
list disk
select disk 1
create partition primary size=10240
format fs=ntfs quick
assign letter=E
diskpart
list volume
select volume 2
extend size=2048