How to Search for Large Files in Windows 11 to Save Space

If your Windows 11 PC is running low on storage, you’re not alone. Over time, large files — such as old installers, videos, backups, or temporary data — can quietly fill up your drive. The good news is that Windows 11 includes several built-in tools and methods to help you locate and remove these space-hogging files quickly.

In this guide, we’ll walk you through how to find large files using File Explorer, Command Prompt, PowerShell, and other native tools to free up valuable disk space without needing third-party software.

What You’ll Need

Before you begin, make sure you have the following:

You’ll need administrator access on your PC to remove system-level files if needed. A stable system drive with sufficient free space is also important before running large-scale scans. No external utilities are required, but having File Explorer and Windows Search indexing enabled will make the process faster.

Tip: Avoid deleting files directly from system folders like C:\Windows or C:\Program Files unless you’re absolutely sure what they are. Stick to user folders, downloads, videos, or temporary directories.

Step 1: Use File Explorer’s Search Filters

The simplest way to find large files is through File Explorer’s built-in search filter.

  1. Open File Explorer using Windows + E.
  2. Click on This PC in the left sidebar to search across all drives.
  3. In the top-right search box, type: size:>1GB This will show all files larger than 1 GB. You can adjust the number as needed — for example, size:>500MB or size:>100MB.
  4. Wait for the results to populate, then sort them by Size or Date Modified to find the largest and oldest files.

You can also limit your search to specific drives or folders, such as Downloads or Videos, to make it faster.

Step 2: Use the Storage Settings Tool

Windows 11 includes a graphical storage analyzer that helps you find large files and unused data categories.

  1. Press Windows + I to open Settings.
  2. Navigate to System → Storage.
  3. Under Storage management, click Show more categories.
  4. Explore sections like Temporary files, Apps & features, and Videos to see how your space is distributed.

You can click on each category to delete unnecessary files directly or uninstall large applications. This is one of the safest ways to clean up space without manually searching through folders.

Step 3: Use Command Prompt to Find Large Files

If you prefer command-line tools, you can use Command Prompt to generate a list of large files.

  1. Open Command Prompt as Administrator.
  2. Enter the following command to list files larger than 1 GB on your C: drive: forfiles /S /M *.* /C "cmd /c if @fsize GEQ 1073741824 echo @path @fsize" > C:\largefiles.txt This command scans the drive and saves the results (file path and size) to a text file named largefiles.txt in your C: drive.
  3. Once the scan finishes, open the text file to review which files are taking up the most space.

This method is especially useful for administrators who want a clean report of large files without manually browsing through folders.

Step 4: Use PowerShell for Advanced Searches

PowerShell provides more flexibility and can scan for large files with readable size formats.

  1. Open PowerShell as Administrator.
  2. Run the following command: Get-ChildItem -Path C:\ -Recurse -ErrorAction SilentlyContinue | Where-Object {$_.Length -gt 1GB} | Sort-Object Length -Descending | Select-Object FullName, @{Name="Size(GB)";Expression={[math]::Round($_.Length / 1GB, 2)}} | Out-File C:\LargeFilesReport.txt This script recursively scans your C: drive for files larger than 1 GB, sorts them by size, and saves the results to a text file called LargeFilesReport.txt.
  3. Open the text file to review your results.

You can adjust the path or size threshold as needed — for example, change C:\ to D:\ or reduce the limit to 500 MB.

Step 5: Use the Disk Cleanup Utility

Disk Cleanup is one of Windows’ oldest but still useful tools for removing large system-generated files.

  1. Press Windows + R, type cleanmgr, and hit Enter.
  2. Select the drive you want to clean and click OK.
  3. Click Clean up system files to include system-level temporary data.
  4. Check categories like Windows Update Cleanup, Temporary Internet Files, and Recycle Bin, then click OK.

This will automatically delete unnecessary large files safely, freeing up space without risking important data.

Step 6: Use the Storage Sense Feature

Storage Sense can automatically delete large temporary or unused files on a schedule.

  1. Open Settings → System → Storage → Storage Sense.
  2. Toggle Storage Sense to On.
  3. Configure it to run automatically during low disk space or set a custom frequency.
  4. Enable options to delete temporary files and empty the recycle bin regularly.

Once configured, Storage Sense quietly manages disk space in the background, reducing the need for manual cleanup.

Step 7: Check for Hidden Large Files

Sometimes, hidden or system files take up unexpected space.

  1. Open File Explorer and click View → Show → Hidden items.
  2. Navigate to folders like:
    • C:\Users\YourName\AppData\Local\Temp
    • C:\Windows\Temp
    • C:\Users\YourName\Downloads
  3. Manually delete files or folders you no longer need.

Be cautious when cleaning these directories. Avoid deleting anything you don’t recognize, as some temporary files are used by ongoing system processes.

Wrapping Up

Finding and cleaning up large files in Windows 11 doesn’t have to be difficult. Whether you prefer the visual approach of File Explorer, the automated cleanup of Storage Sense, or the precision of PowerShell, there’s a method to suit every workflow.

Regularly checking for large and unnecessary files helps keep your system running smoothly and prevents the slowdowns that come with low storage space. Once you’ve freed up gigabytes of clutter, you’ll notice your PC running faster, updates installing more quickly, and your drives staying organized.

And perhaps next time you see your disk space mysteriously vanish, you’ll know exactly where to look before blaming Windows Update.

Posted by Arpita

With a background in Computer Science, she is passionate about sharing practical programming tips and tech know-how. From writing clean code to solving everyday tech problems, she breaks down complex topics into approachable guides that help others learn and grow.