Guide to Adjusting Partition Size in Windows 11

Guide to Adjusting Partition Size in Windows 11

UPDATED 3/24/2025: Changing the size of partitions in Windows 11 is an essential skill for managing your disk space effectively. Whether you aim to redistribute storage capacity or make more space available for specific applications, this guide will equip you with the knowledge to resize partitions as needed while safeguarding your data.

Windows 11 offers various intuitive methods for resizing partitions without the risk of data loss. You can utilize the Settings app under “Disks & volumes”, Disk Management, Command Prompt, or PowerShell. Each method offers unique benefits depending on your comfort level and preferences.

Let’s get started with the detailed steps to shrink or extend your partitions on Windows 11.

Change Partition Size with Settings in Windows 11

To adjust the size of a partition using the Settings application, follow these steps:

  1. Open Settings on Windows 11.

  2. Select System from the sidebar.

  3. Navigate to the Storage tab.

  4. Scroll down to find Advanced storage settings and click on it.

  5. Choose Disks & volumes.

    Open Disks & volumes

  6. Select the drive containing the partition you wish to resize.

  7. Click on the Properties button for that partition.

    Open volume properties

  8. Select Change size under the “Size”section.

    Change size option

  9. To shrink the partition, enter a lower value in the “Current” field.

  10. To extend the partition, enter a value higher than the “Current” size (ensure it doesn’t exceed the “Max” value).

    Shrink or extend partition size

  11. Click OK to apply the changes.

Upon completing these steps, the partition size will be adjusted without data loss. If you need to extend the primary (C:) drive, be aware that you may need to delete and recreate the Recovery Partition before resizing the main drive.

Changing Partition Size Using Disk Management

The Disk Management tool presents a straightforward method for altering partition sizes in Windows 11.

To Shrink a Partition:

Here’s how to resize a partition down in Windows 11 using Disk Management:

  1. Open Start.

  2. Type Create and format hard disk partitions, then click the first result to launch the Disk Management console.

  3. Right-click on the drive you want to resize and choose Shrink Volume.

    Disk Management shrink volume

  4. Specify the amount of space (in megabytes) to shrink the partition.

    Change partition size

    Quick note: As you adjust the desired size, you can see the total amount of unallocated space post-shrink.
  5. Click the Shrink button to finalize the adjustment.

After these actions, your partition will shrink to the new specified size.

To Extend a Partition:

To resize a partition upwards in size, do the following:

  1. Open Start.

  2. Search for Create and format hard disk partitions again, and open the Disk Management console.

  3. Right-click the partition you want to enlarge and select Extend Volume.

    Disk Management extend volume

  4. Press the Next button.

  5. Select the disk with the available space.

    Quick note: You may need to add available space from the “Available”section before proceeding.
  6. Confirm the size adjustment (if necessary).

    Increase partition size on Windows 11

  7. Click Next followed by Finish.

Your drive should now be successfully extended to the desired size. Keep in mind that if the “Extend volume” option is greyed out, it likely means there isn’t contiguous space available for the adjustment.

Managing Partition Size with Command Prompt

You can efficiently modify partition sizes via the Command Prompt using the DiskPart tool.

Shrinking a Partition:

Here are the steps to shrink a partition using Command Prompt:

  1. Open Start.

  2. Search for Command Prompt, right-click, and select Run as administrator.

  3. Start DiskPart by entering the command:

    diskpart

  4. List the volumes with:

    list volume

  5. Select the partition you wish to shrink:

    select volume 2

    Replace “2” with the appropriate volume number.

  6. Determine how much space you can shrink:

    shrink querymax

  7. Now shrink the partition by entering the desired MB:

    shrink desired=7099 DiskPart shrink partition commands

    Ensure to change “7099”to your preferred value.

  8. (Optional) To reduce to the maximum reclaimable space:

    shrink

Once completed, DiskPart will adjust the partition size accordingly.

To Extend a Partition:

To increase a partition’s size using DiskPart, follow these steps:

  1. Open Start.

  2. As before, open the Command Prompt as an administrator.

  3. Type:

    diskpart

  4. List the disks:

    list disk

    Quick note: Use this to identify the partition you plan to increase.
  5. Next, list the volumes:

    list volume

  6. Select the volume for expansion:

    select volume 2

    Remember to change “2” to your volume’s number.

  7. Finally, increase the partition size:

    extend size=20480

    Replace “20480” with your intended increase size.

  8. (Optional) To expand the partition to take all contiguous space:

    extend DiskPart extend partition commands

Post these steps, expect your partition to be enlarged effectively.

Using PowerShell to Change Partition Sizes

PowerShell is another efficient way to manage partition sizes in Windows 11.

Shrinking a Partition:

To resize a partition downwards using PowerShell, proceed as follows:

  1. Open Start.

  2. Search for PowerShell, right-click it, and choose Run as administrator.

  3. To see all drives, execute:

    Get-Disk

  4. To find the partitions on your drive:

    Get-Partition -DiskNumber 2

    Adjust “2” based on your target disk.

  5. (Optional) Check the supported sizing:

    Get-PartitionSupportedSize -DiskNumber 2 -PartitionNumber 2

    Change the disk and partition numbers accordingly.

  6. Resize the partition to 5GB:

    Resize-Partition -DiskNumber 2 -PartitionNumber 2 -Size (5GB) PowerShell resize partition (shrink)

After executing these commands, PowerShell will have successfully shrunk the partition, providing unallocated space for new volumes.

To Extend a Partition:

To enlarge a partition via PowerShell, follow this method:

  1. Open Start.

  2. Launch PowerShell with administratorial privileges.

  3. Again, type:

    Get-Disk

  4. List the partitions:

    Get-Partition -DiskNumber 2

  5. (Optional) For supported sizes:

    Get-PartitionSupportedSize -DiskNumber 2 -PartitionNumber 2

  6. Increase the size to 9GB:

    Resize-Partition -DiskNumber 2 -PartitionNumber 2 -Size (9GB) PowerShell resize partition (extend)

  7. (Optional) To extend the partition to its maximum:

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

Upon completing these steps, your partition will seamlessly utilize the new size or tap into available contiguous space.

It is essential to understand the distinction between partitions and volumes. A partition is a logical division within a physical drive, allowing multiple sections of data storage, including multiple operating systems, if desired. Meanwhile, a volume refers to a formatted storage area recognized by the operating system. Each volume can correspond to a single partition or span across several.

In summary: – A drive is your physical storage device.– A partition organizes that storage.– A volume enables usable storage space with a file system.

Update March 24, 2025: This guide has been refined and updated to reflect the most accurate processes available.

Frequently Asked Questions

1. Can I resize a partition without losing data?

Yes, both shrinking and extending a partition can be done on Windows 11 without losing any files, especially when using the provided tools such as Settings, Disk Management, Command Prompt, or PowerShell.

2. What if the “Extend Volume” option is greyed out?

If “Extend Volume”is unavailable, it usually indicates that there is no contiguous unallocated space next to the partition you want to extend. You may need to create unallocated space first.

3. Is it safe to resize my system (C:) drive?

It is generally safe to resize your system drive, but it’s recommended to back up important data beforehand. Also, some actions may require deleting specific partitions, like the Recovery Partition, prior to resizing.

Source & Images

Leave a Reply

Your email address will not be published. Required fields are marked *