Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
Disk partitioning is an essential task for organizing and managing the storage on your Windows system. Partitions allow you to separate your operating system, applications, and personal data, making it easier to manage and secure your files. In this article, we will explore how to create and manage disk partitions in Windows using both the graphical interface and command-line tools.
Disk Management is a built-in tool in Windows that provides a graphical interface for managing disk partitions. Here's how to use it:
Open Disk Management:
Win + X
and select "Disk Management" from the menu.Win + R
), type diskmgmt.msc
, and press Enter.Shrink an Existing Partition:
Create a New Partition:
Format a Partition:
For those who prefer command-line tools, DiskPart is a powerful utility for managing disk partitions in Windows. Here's how to use it:
Open Command Prompt as Administrator:
Win + X
and select "Command Prompt (Admin)" or "Windows PowerShell (Admin)."Start DiskPart:
diskpart
and press Enter to start the DiskPart utility.List Disks:
list disk
and press Enter to display all disks on your system.Select a Disk:
select disk X
(replace X with the disk number) and press Enter.Create a Partition:
create partition primary size=XXXX
(replace XXXX with the size in MB) and press Enter.Format the Partition:
format fs=ntfs quick
and press Enter to format the partition with the NTFS file system.Assign a Drive Letter:
assign letter=X
(replace X with the desired drive letter) and press Enter.Exit DiskPart:
exit
and press Enter to exit the DiskPart utility.Example 1: Shrinking a Partition Using Disk Management
Example 2: Creating a Partition Using DiskPart
diskpart
and press Enter.list disk
and press Enter.select disk 1
and press Enter.create partition primary size=10240
and press Enter.format fs=ntfs quick
and press Enter.assign letter=E
and press Enter.exit
and press Enter.