How to Shrink a Partition in Windows 11

Shrinking a partition in Windows 11 is useful when you want to create additional space for another partition without deleting the existing volume. For example, if your C: drive has plenty of unused space, you can reduce its size and use the newly created unallocated space to create another drive.

Windows 11 includes built-in tools that can shrink partitions without requiring third-party software. The easiest option is Disk Management, while DiskPart provides a command-line alternative for advanced users.

However, Windows cannot always shrink a partition by its entire amount of free space. Files that cannot be moved may limit how much the partition can be reduced. Understanding how the process works can help you avoid unnecessary partition changes and potential data loss.

Before shrinking any partition, make sure important files are backed up. You should also carefully check the disk layout so you modify the correct partition.

Method 1: Check the Partition Before Shrinking

Before changing the size of a partition, check how much space is currently available.

  • Press Windows + E to open File Explorer.
  • Select This PC.
  • Right-click the partition you want to shrink.
  • Select Properties.
  • Check the used and available space.

You can then open Disk Management to view the complete physical disk layout.

  • Press Windows + X.
  • Select Disk Management.
  • Locate the disk containing the partition.
  • Identify the correct volume.
  • Check its current capacity and file system.

For example, you may have a 500 GB C: drive with only 180 GB being used. Although there may appear to be more than 300 GB of free space, Windows may not allow you to shrink the partition by the entire amount.

This can happen because certain files are located toward the end of the partition and cannot easily be moved while Windows is running.

Method 2: Shrink a Partition Using Disk Management

Disk Management is the simplest built-in method for reducing a partition’s size.

  • Press Windows + X.
  • Click Disk Management.
  • Find the partition you want to reduce.
  • Right-click the partition.
  • Select Shrink Volume.
  • Wait while Windows checks how much space is available for shrinking.
  • Enter the amount of space to shrink in MB.
  • Click Shrink.

For example, if you want to reduce a partition by 50 GB, enter approximately:

51200

because Windows Disk Management uses megabytes for this field.

After the operation finishes, Disk Management will show the newly created space as Unallocated.

For example, the layout may change from:

C: 500 GB

to:

C: 450 GB | Unallocated 50 GB

The unallocated area can later be used to create a new volume or, depending on the disk layout, for other partition-management operations.

Do not format or delete the original partition after shrinking it unless you specifically intend to do so.

Method 3: Choose the Right Shrink Size

Choosing the correct shrink amount is important because shrinking reduces the total capacity of the existing partition.

Suppose a drive has:

Total capacity: 1 TB
Used space:     400 GB
Free space:     600 GB

You might assume that you can shrink the partition by 600 GB. Windows may not permit this because some system or application files can be located near the end of the volume.

A safer approach is to leave sufficient free space on the original partition.

For example, if you want to create a 100 GB partition:

  • Open Shrink Volume.
  • Enter approximately 102400 MB.
  • Review the resulting size.
  • Click Shrink if the displayed result is acceptable.

Afterward, the original partition will be approximately 100 GB smaller.

Avoid shrinking a Windows system partition so aggressively that it has almost no free space remaining. Windows, applications, updates, temporary files, and user data all require working space.

Method 4: Shrink a Partition Using DiskPart

Advanced users can use DiskPart to shrink a partition from Windows Terminal.

First, open an elevated terminal.

  • Press Windows + X.
  • Select Terminal (Admin).
  • Enter:
diskpart

Press Enter.

List the available volumes:

list volume

Identify the volume you want to shrink.

Select it:

select volume 3

Replace 3 with the correct volume number.

You can then check how much space Windows can potentially reclaim:

shrink querymax

To shrink the volume by a specific amount, use:

shrink desired=51200

This example attempts to shrink the selected volume by 50 GB.

You can also specify a minimum amount:

shrink desired=51200 minimum=20000

After completing the operation, type:

exit

DiskPart is powerful, so carefully verify the volume number before running the shrink command. Selecting the wrong volume can lead to unintended changes.

Method 5: Create a New Partition From the Unallocated Space

Shrinking a partition only creates unallocated space. If you want to use that space as a separate drive, you need to create a new volume.

For example:

C: 400 GB | Unallocated 100 GB

You can create a new partition from the unallocated area.

  • Open Disk Management.
  • Right-click the Unallocated area.
  • Select New Simple Volume.
  • Click Next.
  • Specify the volume size.
  • Assign a drive letter.
  • Select the appropriate file system.
  • Enter a volume label if desired.
  • Complete the wizard.

The result may look like:

C: 400 GB | D: 100 GB

You can then use the new partition for documents, downloads, applications, backups, or other files.

Creating a new partition is optional. You can leave the space unallocated if you intend to use it later.

Method 6: Fix the Problem When Windows Will Not Shrink Enough

Sometimes Disk Management reports that only a small amount of space can be reclaimed even though the partition appears to have plenty of free capacity.

This can happen when Windows encounters files that cannot be moved easily.

Before attempting advanced solutions, try these basic steps:

  • Empty the Recycle Bin.
  • Remove unnecessary temporary files.
  • Uninstall applications you no longer need.
  • Restart Windows.
  • Run Disk Cleanup or use Windows storage-management options.
  • Try shrinking the volume again.

You should not randomly delete system files to increase the available shrink space.

On a system partition, files related to the page file, hibernation, restore points, or other Windows features can affect the maximum shrinkable amount.

If Windows still refuses to shrink the partition by the amount you need, consider whether the requested size reduction is actually necessary. A smaller reduction may work without making significant system changes.

Method 7: Check the Partition After Shrinking

After shrinking a partition, verify that Windows recognizes the new size and that your files are still accessible.

Open Disk Management and check the partition.

You should see something similar to:

C: 350 GB | Unallocated 150 GB

Then open File Explorer.

  • Press Windows + E.
  • Select This PC.
  • Right-click the affected drive.
  • Select Properties.
  • Check the new capacity.
  • Open several folders and confirm that your files are accessible.

If you created a new volume, verify that it appears in File Explorer with the expected drive letter.

You should also check that Windows continues to operate normally. If you reduced the C: drive, make sure it still has enough free space for Windows updates, applications, temporary files, and normal use.

Method 8: Avoid Common Partition-Shrinking Mistakes

Partition resizing is generally straightforward, but several mistakes can cause unnecessary problems.

First, make sure you select the correct partition. Multiple drives can have similar names and sizes, especially on systems containing more than one SSD or hard drive.

Second, do not confuse free space with unallocated space. Free space exists inside a partition, while unallocated space is outside any partition.

For example:

C: 500 GB

with 200 GB free does not mean you already have 200 GB of unallocated space.

After shrinking:

C: 400 GB | Unallocated 100 GB

the 100 GB is outside the C: partition and can be used separately.

Finally, do not interrupt a partition-resizing operation. Avoid shutting down the computer or forcing a restart while Windows is actively modifying the partition.

Keeping a backup of important files before making partition changes is strongly recommended.

Conclusion

Shrinking a partition in Windows 11 is a convenient way to reclaim part of an existing volume and create unallocated disk space. The built-in Disk Management utility is usually the easiest way to perform the operation, while DiskPart provides an alternative for users who are comfortable with command-line tools.

The amount you can shrink is not always equal to the amount of free space shown in File Explorer. Windows may limit the operation because of files that cannot be moved during the resize process.

Once the partition has been successfully reduced, the resulting unallocated space can be left unused or turned into a new volume through Disk Management.

Always check the disk layout carefully before making changes, select the correct partition, and keep backups of important data. With these precautions, you can safely reorganize available storage without replacing the drive.

Related Articles

Popular Categories