How to Resize Partition on Windows 10

Photo of author

By Victor Ashiedu

Published

resize partition windows 10

In this Itechguide, Victor teaches you how to resize partition on Windows 10. The guide covers steps for 3 methods to resize partition on Windows 10.

Before you can resize a partition, the disk must have a free contiguous disk space to the right of the partition.

Expand “Browse Post Topics” below to go straight to a topic.

How to Resize Partition on Windows 10 with Disk Management

How to Resize Partition on Windows 10 with Disk Management
  1. Right-click Windows 10 Start menu and select Disk Management.
How to Resize Partition on Windows 10 with Disk Management
  1. Then, right-click the partition you want to resize and select Extend Volume. The Extend Volume Wizard will launch.
How to Resize Partition on Windows 10 with Disk Management
  1. On the first screen on the Extend Volume Wizard, click Next.
  1. Then, on the Select Disk screen, add all the free, unallocated spaces you want to use to resize the existing partition and click Next.
You do not have to use all the available disk spaces. you may select a smaller size. To select a smaller size, adjust the value in the Select the amount of space in MB field.
  1. Finally, on the Completing the Extend Volume Wizard screen, click Finish.
How to Resize Partition on Windows 10 with Disk Management

How to Resize Partition on Windows 10 with DISKPART

How to Resize Partition on Windows 10 with DISKPART
  1. Enter cmd in the Windows 10 search box. Then, right-click Command Prompt and select Run as Administrator.
You will receive a User Access Control (UAC) confirmation, requesting you to allow the “app to make changes to your PC”. On the UAC prompt, click Yes.
How to Resize Partition on Windows 10 with DISKPART
How to Resize Partition on Windows 10 with DISKPART
  1. On command prompt, type DISKPART and press enter.
DISKPART

The DISKPART prompt will open.

How to Resize Partition on Windows 10 with DISKPART
  1. Then, on the DISKPART prompt, enter this command and press enter.
LISK DISK

The List Disk command displays all disks on the PC. The next step is to select a disk.

How to Resize Partition on Windows 10 with DISKPART
  1. To select a disk, enter the SELECT DISK command below (replace 1 with your disk #). Then, press enter.
SELECT DISK 1

The next step is to list all volumes (partitions) on the PC.

  1. To list the volumes on the PC, enter the LIST VOLUME command and press enter.
LIST VOLUME
Before you resize partition on Windows 10 with DISKPART, you have to select the volume (partition).
  1. To select a partition, enter the SELECT VOLUME command below (change 1 to the volume # for the volume you want to extend). Then, press enter.
SELECT VOLUME 1
How to Resize Partition on Windows 10 with DISKPART
  1. Finally, to resize partition on Windows 10, enter EXTEND command and press enter.

If you use EXTEND command without specifying a size, DISKPART will resize the partition with all available free, unallocated, contiguous space. However, to specify the amount of disk to resize the partition with, modify your command like the command below:

EXTEND size=x

x is the disk size (in MB) you want to extend (resize) the volume (partition) by. To extend a partition by 1 GB, enter this command below and press enter.

EXTEND size=1024

The selected volume will be resized by the specified disk size. To confirm that the partition was resized, run the LIST VOLUME command again. In my example, drive E has increased from 1073 MB to 2097 MB.

How to Resize Partition on Windows 10 with PowerShell

How to Resize Partition on Windows 10 with PowerShell
  1. Type PowerShell in the search bar. Then click Run as administrator.
You will receive a User Access Control prompt, click Yes.
How to Resize Partition on Windows 10 with PowerShell
  1. On the PowerShell prompt, to identify the disk with the partition you want to resize, enter the Get-Disk cmdlet and press enter.
Get-Disk

Note the disk number for the disk you want to resize a partition on. In my example, I want to resize a partition on disk 0.

  1. Then, to identify the partition number for the partition you want to resize, enter the Get-Partition Cmdlet and press enter.
Get-Partition

Note the partition number for the partition you want to resize. In my example, I want to resize partition with PartitionNumber 5 (drive E).

The easiest way to resize a partition is to resize it to its maximum size. To do this, you need to get the maximum size of the partition.
  1. To find the mazimize size of a partition, use the Get-PartitionSupportedSize Cmdlet and pipe the result to a variable.
$PartitionSize = (Get-PartitionSupportedSize –DiskNumber 0 –PartitionNumber 5)
  1. Finally, to resize partition on Windows 10 with PowerShell, use the Resize-Partition Cmdet.
Resize-Partition -DiskNumber 0 –PartitionNumber 5 -Size $PartitionSize.SizeMax

The partition using all available free space. To confirm that the partition resized, run the Get-Partition command again. In my example, the partition has increased from 2.05 GB to 5.41 GB.

You can use the methods covered in this Itechguide to resize partition on Windows 10! I hope you found this Itechguide helpful. If you found it helpful, kindly spare 2 minutes to share your views concerning the guide on [discourse_topic_url].

Similarly, you could ask a question, leave a comment or provide feedback on the community platform at [discourse_topic_url]. You will get a prompt response from our community stall as well as other community members.

Finally, for more Windows 10 Itechguides, visit our WINDOWS 10 HOW-TO page. You may also find our Work from Home page very helpful.

We go the extra mile to deliver the highest quality content for our readers. Read our Content Writing, Content Review, and Anti-Plagiarism policies to learn more.

About the Author

Photo of author

Victor Ashiedu

Victor is the founder of InfoPress Media, publishers of ilifeguides.com and itechguides.com. With 20+ years of experience in IT infrastructure, his expertise spans Windows, Linux, and DevOps. Explore his contributions on Itechguides.com for insightful how-to guides and product reviews.

Suggested Articles

Leave a comment

Send this to a friend