Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
Resizing a partition in Windows is a common task that can help optimize disk space usage. This article will guide you through the process of resizing a partition using both the Disk Management tool and PowerShell.
Disk Management is a built-in Windows tool that provides a graphical interface for managing disk partitions. Here’s how to resize a partition using Disk Management:
Open Disk Management:
Windows + R
to open the Run dialog.diskmgmt.msc
and press Enter to open Disk Management.Select the Partition to Resize:
Extend Volume:
Shrink Volume:
PowerShell provides a command-line interface to manage disk partitions. Here’s how to resize a partition using PowerShell:
Open PowerShell as Administrator:
Windows + X
and select "Windows PowerShell (Admin)."List Available Partitions:
Get-Partition
Shrink a Partition:
Resize-Partition -DriveLetter X -Size Y
X
with the drive letter of the partition you want to shrink and Y
with the new size in MB.Extend a Partition:
Resize-Partition -DriveLetter X -Size Y
X
with the drive letter and Y
with the new total size in MB.