Disk Management Reports Incorrect Volume Size

When you open Disk Management, the volume size (i.e., capacity) may be misreported in the top pane. The bottom pane, which shows the graphical view, may report the capacity correctly for each volume.

disk management wrong volume size/capacity

Although the exact cause is not known, you can fix the issue using Diskpart.

Note: Before using Diskpart or any other disk management tool, it is recommended to back up the data from the specific partition to an external drive, just in case.

Resolution

Run the following commands from an administrator command prompt:

diskpart
list volume
select volume E              -- In the above screenshot, volume E 's capacity is incorrect. So, we select this volume.
extend filesystem
exit

Note:

In the list volume output, note the volume number or the drive letter of the volume that is facing the issue. Then, select that volume using the select volume # command. Once selected, run the extend filesystem command. You should see the output, “Diskpart successfully extended the file system on the volume.”



That should resolve the issue.

References

The partition size is extended, but the file system remains the original size when you extend an NTFS volume:
https://web.archive.org/web/20110109201933/http://support.microsoft.com/kb/832316

Windows Server showing incorrect disk size after configuring partition:
https://evoxt.com/windows/windows-server-showing-incorrect-disk-size-after-configuring-partition/

Disk Management shows incorrect volume size – Super User:
https://superuser.com/questions/889458/disk-management-shows-incorrect-volume-size


One small request: If you liked this post, please share this?

One "tiny" share from you would seriously help a lot with the growth of this blog. Some great suggestions:
  • Pin it!
  • Share it to your favorite blog + Facebook, Reddit
  • Tweet it!
So thank you so much for your support. It won't take more than 10 seconds of your time.

Ramesh Srinivasan is passionate about Microsoft technologies and he has been a ten-time recipient of the Microsoft MVP award in Windows Desktop Experience (Windows Shell), from 2003 to 2012. Ramesh founded Winhelponline.com in 2005.

Leave a Comment