Saturday, July 27, 2024
HomeHow ToHow to change partition size in Windows 11

How to change partition size in Windows 11

On Windows 11, do you need to downsize or expand a partition? Here are four alternative methods to do it.

With Windows 11, you may modify the partition size to either expand the drive’s capacity or create one or more partitions using the available free space.

Using the Settings app, Disc Management, Command Prompt, and PowerShell, you may expand a partition on Windows 11 without reformatting or losing your contents. You may alter the size of any partition, including the “C,” as well as the partition on any disc, even those that originate from an external place, by utilising these tools.

You will discover how to reduce and increase a partition’s size on Windows 11 in this article.

Change partition size on Windows 11

The “Discs & volumes” options in Windows 11 allow you to change the size of a hard disc partition without erasing any data.

Follow these procedures to modify a partition’s size in Windows 11:

  1. Open Settings on Windows 11.
  2. Click on System.
  3. Click the Storage tab.
  4. Select Advanced storage options from the “Storage management” section.
  5. Select “Discs & volumes” from the menu.
How to change partition size in Windows 11
  1. Select Advanced storage options from the “Storage management” section.
  2. Select “Discs & volumes” from the menu.
How to change partition size in Windows 11
  1. Click the Change size button located under the “Size” column.
How to change partition size in Windows 11
  1. Confirm the new size of the partition.
How to change partition size in Windows 11

Just a quick reminder: You may expand a partition to its maximum size by specifying the “Max” capacity value, or you can select a size less than “Max” capacity to reduce the partition size without losing data.

  1. Click the OK button.

When you’re done, the system will adjust the partition size to match the given value without erasing any data.

Additionally, you may modify the partition’s size or relocate it to a different region of the actual hard disc using third-party tools like GParted.

Change partition size with the Disk Management option on Windows 11

On Windows 11, the most straightforward method to reduce or increase the partition size is to use the traditional Disc Management tool.

Shrink partition

Use these procedures to reduce a partition in Windows 11’s Disc Management:

  1. Open Start.
  2. Search for Create and format hard disc partitions and select the first result to enter the Disc Management interface.
  3. Right-click the drive to be partitioned and pick the Shrink Volume option.
How to change partition size in Windows 11
  1. Confirm the amount of space to be reduced (in megabytes).
How to change partition size in Windows 11

Quick tip: As you modify the size value, the total amount of the unallocated space after downsizing the original partition will be displayed.

  1. Click the Shrink button.

When you finish the steps, the partition will shrink to the requested size.

Extend partition

Follow these methods to increase (or expand) the disc partition size using Disc Management:

  1. Open Start.
  2. Search for Create and format hard disc partitions and launch the Disc Management interface by clicking the first result.
  3. To alter the partition size, right-click the disc and pick the Extend Volume option.
How to change partition size in Windows 11
  1. Click the Next button.
  2. Select the disc with available space (if appropriate) under the “Selected” section.

To make the disc available, choose it from the “Available” column and click the Add button in certain situations.

  1. Confirm the space available to expand the disc partition (if necessary).
How to change partition size in Windows 11
  1. Click the Next button.
  2. Click the Finish button.

Following completion of the processes, the drive partition will be expanded to the requested size.

If the “Extend volume” option is greyed out, it means that there isn’t enough space on the physical disc to increase the capacity.

Change partition size using Command Prompt option on Windows 11

On Windows 11, you may also modify the partition size without losing data by using the DiskPart tool in conjunction with Command Prompt.

Shrink partition

Use the following procedures to shrink a partition in Windows 11 Command Prompt:

  1. Open Start.
  2. Search for Command Prompt, now right-click the first result in search and choose Run as administrator.
  1. To launch diskpart, use the following command and press Enter:

Diskpart

  1. To list the volumes, use the following command and press Enter:

list volume

  1. To choose the disc for which you wish to shrink the partition, type the following command and hit ‘Enter’:

select volume 2

Change “2” in the command to the number reflecting the partition you wish to edit.

  1. To determine the amount of space available, enter the following command and hit ‘Enter’:

shrink querymax

  1. To decrease the disc partition by a certain quantity (in megabytes), use the following command and hit ‘Enter’:

shrink desired=7099

How to change partition size in Windows 11

Change “7099” in the command to the quantity (in megabytes) you wish to decrease the partition.

  1. (Optional) To decrease the partition by its maximum reclaimable space, use the following command and press ‘Enter’:

shrink

When you finish the instructions, DiskPart will shrink the partition to the new lower size.

Extend partition

To expand the size of a disc partition with DiskPart, follow these steps:

  1. Open Start.
  2. Search for Command Prompt, now right-click the first result in search and choose Run as administrator.
  1. To launch diskpart, use the following command and press Enter:

diskpart

  1. To list the available discs and their capacities, use the following command and press Enter:

list disk

Quick tip: Determine the entire size of the drive with the partition you wish to expand.

  1. To list the volumes, use the following command and press Enter:

list volume

  1. To pick the volume to reduce the partition, use the following command and hit ‘Enter’:

select volume 2

Change “2” in the command to the number that indicates the partition to be modified.

  1. To expand the size of the partition, use the following command and press Enter:

extend size=20480

Change “20480” in the command to the quantity (in megabytes) you wish to increase the partition.

  1. (Optional) To expand the size of the partition utilising all contiguous space on the drive, use the following command and press Enter.

extend

How to change partition size in Windows 11

When you finish the instructions, the partition will be expanded to the new size without losing your data.

Change partition size using the PowerShell on Windows 11

PowerShell commands may also be used to change partition sizes.

Shrink partition

Follow these steps to resize a partition with PowerShell:

  1. Open Start.
  2. Search for PowerShell now right-click the first result in search and choose Run as administrator.
  1. To list all drives and their total size, use the following command and hit ‘Enter’:

Get-Disk

  1. To list the available partitions on the disc, use the following command and press ‘Enter’:

Get-Partition -DiskNumber 2

Change “2” in the command to the number of the drive containing the partition to shrink.

  1. (Optional) To determine the minimum and maximum space available for resizing the partition, use the following command and press Enter:

Get-PartitionSupportedSize -DiskNumber 2 -PartitionNumber 2

Change the disc and partition number in the command to reflect your scenario. Furthermore, the SizeMin and SizeMax are defined in bytes, therefore you may need to utilise an internet converter to interpret the information in gigabytes or other sizes.

  1. To enlarge the partition to 5GB, use the following command and press Enter:

Resize-Partition -DiskNumber 2 -PartitionNumber 2 -Size (5GB)

How to change partition size in Windows 11

Replace the partition number and size in the command with the information pertaining to your disc and the size to shrink the drive. We’re also using GB, but you may provide the space in bytes, KB, MB, or TB.

When you finish the steps, PowerShell will reduce the partition, leaving more unallocated space for creating new volumes.

Extend partition

Follow these procedures to increase the partition size with PowerShell:

  1. Open Start.
  2. Search for PowerShell now right-click the first result in search and choose Run as administrator.
  1. To list all drives and their total size, use the following command and hit Enter:

Get-Disk

  1. To list the available partitions on the disc, use the following command and press Enter:

Get-Partition -DiskNumber 2

Change “2” in the command to the disc number of the partition you wish to enlarge.

  1. (Optional) To learn the minimum and maximum space you may resize the partition on Windows 11, use the following command and press ‘Enter’:

Get-PartitionSupportedSize -DiskNumber 2 -PartitionNumber 2

Change the disc and partition number in the command to reflect your scenario.

  1. To expand the partition size to 9GB, enter the following command and press Enter:

Resize-Partition -DiskNumber 2 -PartitionNumber 2 -Size (9GB)

Replace the partition number and size in the command with the information relating to your disc and the size to enlarge the partition.

How to change partition size in Windows 11
  1. (Optional) On Windows 11, type the following command and press ‘Enter’ to expand the partition to its maximum size:

Resize-Partition -DiskNumber 1 -PartitionNumber 2 -Size 10720624128

Replace the disc and partition number in the command with the information that applies to your circumstance. Also, utilise the SizeMax value from step 4 to indicate the new size of the partition.

When all of the stages are completed, the partition will cover the available space or the chosen amount.

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments