How to Find and Delete Duplicate Files on Windows 11 for Free
To find and delete duplicate files on Windows 11 for free, sort a folder by name or size in File Explorer > View > Details, use the search box to filter (for example kind:=picture size:>5MB), and remove the obvious copies; for a thorough sweep, run a free PowerShell hash check or a reputable free duplicate-finder app, then send matches to the Recycle Bin so you can recover mistakes. This guide is for anyone whose Windows 11 PC is filling up with copied photos, downloads, and "file (1).jpg" clutter and who wants to clear it without paying or risking real data.
TL;DR
- Windows 11 has no built-in "find duplicates" button, but File Explorer sorting and search get you most of the way for free.
- Sort by Size or Name to spot copies like
report (1).pdf; clear the Downloads folder first, it's the worst offender. - For exact, byte-for-byte matches, a short PowerShell command hashes files so you only delete true duplicates.
- Always delete to the Recycle Bin (not Shift+Delete) so a mistake is one click to undo.
- Phone-side duplicates are a separate, bigger problem — handle those on the device, not by copying everything to the PC.
Why does Windows 11 have no built-in duplicate finder?
Windows 11 ships with Storage Sense, which cleans temporary files, empties the Recycle Bin, and clears the Downloads folder on a schedule — but it does not scan for duplicate documents, photos, or videos. Microsoft leaves that to File Explorer's manual tools and third-party apps, partly because automatically deleting "duplicates" is risky: two files with the same name can have different contents, and two identical files might both be needed in different places.
So the safest free approach is a layered one: start with File Explorer to catch the easy, obvious copies, then use a hash-based check (PowerShell or a trusted app) for the duplicates that are byte-for-byte identical but renamed. You stay in control of every deletion, which is exactly what you want when files can't always be recovered.
How do I find duplicate files in File Explorer (free, no app)?
File Explorer alone catches a surprising share of duplicates, especially the classic name (1), name (2) copies Windows creates when you re-download or re-save something.
- Open File Explorer and navigate to a folder to clean (start with Downloads, then Pictures and Documents).
- Switch to View > Details so you can see file size, type, and date.
- Click the Name column header to sort alphabetically — true copies like
invoice.pdfandinvoice (1).pdfline up next to each other. - Click the Size column header instead to group same-size files together; identical files have identical sizes, so matching sizes are your first clue.
- Use the search box (top-right) with filters to narrow the hunt. Examples:
kind:=picture size:>5MBfor large photos,*.mp4for videos, orkind:=documentfor files. - Preview before deleting: select a file and press the preview pane toggle (Alt+P) or just open it, so you confirm two same-named files really match before removing one.
Sorting by name and size won't catch a duplicate that's been renamed (for example photo.jpg copied as vacation.jpg), and it can't confirm two files are truly identical inside. For that you need a content check, covered next.
How do I find exact duplicates with PowerShell?
For byte-for-byte certainty, Windows 11 includes PowerShell, which can compute a hash (a unique fingerprint) of each file. Files with the same hash are genuine duplicates no matter what they're named.
- Press Start, type PowerShell, and open Windows PowerShell (no admin needed for your own folders).
- Point it at the folder you want to scan and list only the duplicate groups with one command:
Get-ChildItem -Path "C:\Users\YourName\Pictures" -Recurse -File | Get-FileHash | Group-Object Hash | Where-Object { $_.Count -gt 1 } | ForEach-Object { $_.Group.Path } - Read the output: each cluster of paths sharing a hash is one set of identical files. Keep one copy, note the rest.
- Delete to the Recycle Bin manually in File Explorer, or have PowerShell move them there rather than hard-delete, so recovery stays possible.
This is the most reliable free method because it compares contents, not names. The trade-off is that hashing a very large library (tens of thousands of files) can take several minutes, and PowerShell shows you matches but won't pick which copy to keep — that judgment stays with you, which is the safe way to do it.
Which free method should I use?
Each approach has a sweet spot. Here's how the common free options compare so you can pick the right tool for the job rather than over-relying on one.
| Method | Catches renamed copies? | Confirms true duplicates? | Effort | Best for |
|---|---|---|---|---|
| File Explorer sort by Name | No | No (name only) | Low | file (1), file (2) clutter |
| File Explorer sort by Size | Partly | No (size only) | Low | Spotting same-size candidates |
| File Explorer search filters | Partly | No | Low | Large photos/videos by type |
| PowerShell hash check | Yes | Yes (byte-for-byte) | Medium | Exact duplicates, any name |
| Free duplicate-finder app | Yes | Yes | Low-Medium | Bulk libraries, side-by-side review |
For most people the fastest free routine is: clear Downloads, sort Pictures and Documents by name and size to remove obvious copies, then run the PowerShell hash check once on your big media folders to catch the renamed ones. If you'd rather click than type, a reputable free duplicate-finder app does the same hashing with a visual review screen — just be cautious about which one you install (see the safety section below).
Is it safe to delete duplicate files on Windows 11?
Yes, deleting genuine duplicates is safe — as long as you confirm they're true copies and delete to the Recycle Bin so you can undo a mistake. The danger isn't duplicates; it's mistaking a similar-but-different file (or a file the system needs) for a copy.
What Windows does natively: Storage Sense (under Settings > System > Storage) automatically clears temp files, empties the Recycle Bin, and can remove old Downloads on a schedule — useful housekeeping, but it never touches your actual documents or photo duplicates. Windows also keeps deleted files in the Recycle Bin until you empty it, which is your safety net. The OS deliberately does not auto-delete files it thinks are duplicates, because that judgment is risky.
What a cleaner can add: A good duplicate finder hashes file contents so it only flags exact matches, groups them for one-click review, and surfaces your largest files so you reclaim the most space first. Cleanor focuses on this exact problem on the phone side — it scans your photo library on-device for duplicates, near-identical bursts, and your biggest files so you clear real bloat without scrolling for hours, and it never uploads your whole library.
What no tool can do: No app can know which copy of a file you consider the keeper, and none should delete folders that programs depend on (inside Windows, Program Files, or AppData) — clearing those can break software. Never let an automated cleaner loose on system directories, and never use Shift+Delete on files you haven't verified, since that bypasses the Recycle Bin entirely. Confirm, then delete, then empty the bin once you're sure.
FAQ
Does Windows 11 have a built-in duplicate file finder?
No. Windows 11 includes Storage Sense for clearing temporary files and old downloads, but it has no feature that scans for and removes duplicate documents, photos, or videos. You'll need File Explorer sorting, a PowerShell hash check, or a third-party app to find true duplicates.
How do I delete duplicate photos on Windows 11 for free?
Open your Pictures folder in File Explorer > View > Details, sort by Name and then Size to spot copies, and preview before deleting. For renamed copies, run a PowerShell hash scan on the folder so you only remove byte-for-byte identical images. Always send them to the Recycle Bin first.
Will deleting duplicate files free up much space?
It depends on what's duplicated. Redundant photos, videos, and downloads can add up to tens of gigabytes on a cluttered PC, while a few duplicate documents barely move the needle. Sort by size first so you delete the largest duplicates and see the biggest gains.
Is it safe to use a free duplicate finder app?
Reputable free duplicate finders are fine if you choose a well-known one, decline any bundled extras during install, and review matches before deleting rather than using a blind "auto-delete all" button. Avoid tools that pressure you to clean system folders or that can't show you exactly what they'll remove.
Where to start
Start with the free wins on the PC: clear your Downloads folder, sort Pictures and Documents by name and size in File Explorer to remove obvious copies, then run the PowerShell hash check once on your big media folders and delete the confirmed matches to the Recycle Bin. Check your Settings > System > Storage breakdown afterward to see how much you reclaimed.
If the real clutter lives on your phone — usually where duplicate photos and bursts pile up fastest — handle it there rather than dumping everything onto the PC first. Our clean up phone storage guide walks through the safe order for reclaiming space, and Cleanor for iOS finds duplicates, near-identical shots, and your largest files on-device so you clear genuine bloat without losing the photos you care about. If duplicates versus near-identical shots is your sticking point, duplicate vs similar photos what to delete to free up space explains what's safe to remove, and if you're staring at a full disk, storage full what should I delete first gives you the order to follow.