Successfully added
Windows
by Burton
Find the Biggest Disk Space Hogs on Windows with DiskUsage
Have you ever wondered where all your disk space has gone? Instead of manually browsing folders, Windows includes a powerful command that quickly identifies the largest space consumers on your drive.
The Command
diskusage C:\ /h /t=10
What It Does
This command scans the C: drive and displays the 10 largest folders or files, helping you quickly locate areas that consume the most storage.
| Option | Description |
|---|---|
C:\ |
Starts the scan at the root of the C: drive |
/h |
Shows sizes in a human-readable format (MB, GB, TB) |
/t=10 |
Limits the output to the top 10 largest results |
Why It Is Useful
- Quickly identify storage problems
- Find large folders without third-party tools
- Useful for Windows cleanup and troubleshooting
- Easy to run from Command Prompt or PowerShell
Example Output
45.2 GB C:\Windows
32.8 GB C:\Users
18.4 GB C:\Program Files
12.1 GB C:\ProgramData
In this example, the largest space consumers are displayed first, making it easy to focus cleanup efforts where they will have the biggest impact.
Additional Helpful Variations
Show all results:
diskusage C:\ /h
Analyze a specific folder:
diskusage C:\Windows /h /t=20
Limit the folder depth:
diskusage C:\ /h /u=3
If a Windows machine is running low on disk space, this command is often one of the fastest ways to discover where the storage is being used.
windows
storage
diskusage
powershell
troubleshooting
Referenced in:
Comments