How to remove duplicate files on Windows 11

Short answer: Windows 11 has no built-in duplicate file finder. You can hunt for copies manually in File Explorer, hash files with PowerShell, or use a free tool like Duplicate File Finder that scans your folders, groups identical files by SHA-256 and sends the extra copies to the Recycle Bin — with results appearing live while the scan is still running.

Why duplicate files pile up

Nobody copies the same file on purpose, yet duplicates appear everywhere:

  • downloads saved twice because the first one was never found — report.pdf and report (1).pdf;
  • photos copied from a phone while an old backup still sits in another folder;
  • project folders where an archive is re-zipped as final, final2 and final_v3;
  • music libraries where the same track was re-ripped at a different bitrate;
  • documents duplicated "just in case" and then forgotten.

On a drive with years of history, duplicates easily take gigabytes. Removing them is the fastest way to free space without losing anything: you keep one copy of every file and delete the rest.

Method 1: File Explorer and Windows settings (manual)

Windows 11 can help you find candidates, but it cannot compare file contents.

  1. Open a folder in File Explorer and switch to View → Details.
  2. Sort by Size — duplicates of the same file usually have identical sizes.
  3. Check the Date modified column to guess which copy is the original.
  4. Hold Ctrl, select the copies you do not need, press Delete — files go to the Recycle Bin.

This works for a handful of obvious duplicates. It fails when files have different names, when same-size files are actually different, or when you need to check thousands of photos. Remember that Storage Sense in Settings → System → Storage only removes temporary files and old downloads; it does not find duplicates by content.

Method 2: PowerShell (for advanced users)

PowerShell can hash files and group identical ones. Open Windows Terminal and run:

Get-ChildItem "D:\Downloads" -Recurse -File |
  Get-FileHash -Algorithm SHA256 |
  Group-Object Hash |
  Where-Object { $_.Count -gt 1 } |
  ForEach-Object { $_.Group.Path }

The script prints paths of files with the same SHA-256 hash. It is honest but slow and blunt: hashing a large drive takes a long time, you get a plain text list, there are no previews, no groups in a UI, and deleting is completely manual — the first path in the list is not necessarily the original. One wrong Remove-Item and the files are gone for good.

Method 3: Duplicate File Finder — free and live

Duplicate File Finder is a free Windows app that does the boring part for you:

  1. Choose folders and a mode. For byte-identical copies pick Exact duplicates; the app also has modes for similar photos and duplicate music.
  2. Start the scan. Groups appear live while scanning is still running, so you can stop at any moment. Two-pass SHA-256 hashing (size → partial hash → full hash) means zero false positives.
  3. Review and clean up. Each group shows paths, sizes and dates, the oldest file is marked as the original, and the copies you select go to the Recycle Bin with one click. Selection is always manual — the app never deletes anything on its own.

Exact matching compares content, not names, so renamed copies are found as well. The app is free, runs on Windows 10 and 11 (x64), has no ads, accounts or telemetry, and its interface is available in English and Russian.

Download free — DuplicateFileFinder-Setup.exe

How to delete duplicate files safely

  • Keep the oldest copy as the original when you are not sure.
  • Delete to the Recycle Bin, not permanently — you can always restore a mistake.
  • Check whether the folder is synced (OneDrive, Google Drive): deleting a file there deletes it everywhere.
  • On external drives the Recycle Bin may be unavailable, so files are removed permanently. Review twice.
  • Do not clean up folders that belong to installed programs or games — those "duplicates" may be required at runtime.

FAQ

Does Windows 11 have a built-in duplicate file finder?

No. File Explorer can sort files by name, size or date but never compares their contents, and PowerShell only outputs hash lists. A dedicated tool is the practical way to remove duplicate files on Windows 10 and 11.

Is Duplicate File Finder free?

Yes. It is free to download and use, with no ads, accounts or telemetry. The installer is called DuplicateFileFinder-Setup.exe and requires Windows 10/11 (x64).

Will it find duplicates with different file names?

Yes. Exact mode hashes file contents, so IMG_2041.jpg and vacation-final.jpg are recognized as the same file if their bytes are identical.


More guides: find duplicate and similar photos on Windows and find duplicate songs and music files.