HomeGuidesDisk health and low space
Windows storage troubleshooting

Check Windows disk health and low disk space

List physical disk model, media type, health status and size together with volume capacity and free-space percentage without deleting files or changing storage configuration.

Run the disk health diagnostic

pwsh -NoProfile -File .\Invoke-WindowsDiagnostics.ps1 `
  -Disk -PrivacyMode -ExportMarkdown

To change the low-free-space threshold in the standalone module:

pwsh -NoProfile -File .\scripts\disk-health.ps1 `
  -LowFreeSpacePercent 20

When this guide is useful

What the storage report checks

Physical disks

Disk model, reported media type, operational health and total size from built-in Windows storage sources.

Volumes

Drive letter or mount context, file system, total capacity, free space and free-space percentage.

Low-space findings

A warning is generated when a volume falls below the configured threshold, which is 15% by default.

Unavailable sources

Permission or platform limitations are reported instead of silently presenting missing storage data as healthy.

How to interpret disk health and free space

Low free space can affect unrelated-looking tasks

Windows Update, browser caches, application installers, paging and crash-dump creation all need storage. A nearly full system volume can therefore contribute to failures outside a file-management workflow.

The percentage and absolute space both matter

Fifteen percent of a small drive and fifteen percent of a multi-terabyte drive represent very different absolute capacities. Use the warning as a prompt to review both values and the workload.

A healthy status is not a complete hardware test

The report shows health values exposed by Windows. It does not perform a surface scan, read vendor SMART attributes directly or stress the device. A disk can still require vendor diagnostics when symptoms persist.

Map volumes to the correct physical device

Systems with multiple disks, Storage Spaces, virtual disks or removable media can have a more complex relationship between physical devices and drive letters. Preserve the full report for context.

Read-only boundary: the toolkit does not delete files, clean temporary data, run CHKDSK, repair file systems, initialize disks or change partitions.

What the toolkit does not do

Reasonable next steps

  1. Record the free-space values before deleting or moving data.
  2. Confirm which volume contains Windows, applications, pagefiles and user data.
  3. Use built-in or vendor-supported tools for deeper hardware testing when health warnings or I/O errors persist.
  4. Back up important data before attempting repair or partition changes.

Related Windows troubleshooting guides