Disk vs Volume — Understanding Windows Storage


Before using DiskPart, it is critical to understand the difference between a disk and a volume. Most recovery mistakes happen because these concepts are confused.


What Is a Disk?

A disk is a physical or virtual storage device. It is the entire container of storage capacity.

Examples of disks:

Windows labels disks numerically:

Disk 0
Disk 1
Disk 2

A disk has no usable filesystem until it is partitioned. It is raw storage.


What Is a Volume?

A volume is a formatted section of a disk. It is the usable storage space that Windows can read and write.

Volumes:

Users interact with volumes, not disks.


Disk Structure Example

A single disk may contain multiple partitions and volumes:

Disk Partition Volume Purpose
Disk 0 EFI System (hidden) Bootloader
Disk 0 Microsoft Reserved (hidden) System use
Disk 0 Main NTFS C: Windows OS
Disk 0 Data NTFS D: User files

Disk = entire drive
Volumes = usable sections inside the drive


Why This Matters in Recovery


Viewing Disks with DiskPart

diskpart
list disk

Shows all physical disks detected by the system.


Viewing Volumes

list volume

Displays all mounted volumes and their drive letters.


Key Concept Summary


Important Warning

⚠ Commands like clean erase entire disks. They do not erase just a volume — they destroy the disk’s partition table.

Always confirm disk identity before destructive actions.


Mental Model

Disk = entire pizza
Volumes = slices of pizza

You can’t eat the whole disk at once. You eat slices (volumes).


Revision #1
Created 2026-02-08 13:54:45 UTC by joliveira
Updated 2026-02-08 13:55:01 UTC by joliveira