Quick answer: Windows 11 has no built-in duplicate photo finder. To clean duplicates on a PC, you have four real options: sort files manually in File Explorer (fine for a few hundred), turn off Linked Duplicates in Microsoft Photos (only groups iCloud/OneDrive copies), run a PowerShell hash-comparison script (free, technical, exact matches only), or use a dedicated MacSonik Duplicate File Finder (finds exact and visually similar duplicates in bulk across formats). Pick by library size: under 500 photos, go manual. Over 500, use software.
Windows still doesn’t include a built-in tool for finding duplicate photos. Microsoft’s own community moderators on the Microsoft Q&A forum confirm that there’s no native duplicate photo finder, and that reliable detection typically requires third-party software using hash-based comparisons. For many users, this becomes a significant problem. Photo libraries often grow to 10,000–100,000+ images over years of phone backups, screenshots, WhatsApp downloads, and overlapping iCloud or Google Photos syncs, with duplicate rates commonly reaching 30–50%.
One Adobe Photoshop Elements user summed it up on the Adobe Community forums: “Manually searching through 30+ thousand photos would require another lifetime.” That’s exactly the challenge this guide is designed to solve.
Mass photo deletion is one-way. Do these three things first.
Skipping this step can result in losing photos you wanted to keep.
This is the single most important concept, and 90% of guides skip it.
|
|
If you shoot bursts, use WhatsApp/Telegram, or edit photos, roughly half your duplicates will be similar, not exact. A pure-hash tool will miss them.
Use when: under 500 photos in a single folder.
Reality Check: This catches files Windows already helpfully named IMG_0432 – Copy.jpg. It will not catch IMG_0432.jpg versus photo_2023_holiday.jpg if those are the same image with different names; because you’re eyeballing, and eyes fail at scale. Anything past a few hundred photos, stop and use a tool.
Windows Photos has a Linked Duplicates feature that hides iCloud/OneDrive copies of the same image from the gallery view. It does not delete anything. Turning it off just shows you both copies so you can pick one.
What it Does Not Do: Scan your Pictures folder for duplicates you copied in from an old phone backup. It only groups copies of images already sync-linked across cloud accounts. This is the specific limitation that trips up most users. They enable/disable the setting and nothing changes because their duplicates aren’t cloud-linked in the first place.
Free, no install, catches every byte-identical duplicate. Won’t touch similar images. It requires you to be comfortable in a terminal.
Open PowerShell, paste this, and replace the path:
|
Get-ChildItem -Path “C:\Users\YourName\Pictures” -Recurse -File ` -Include *.jpg,*.jpeg,*.png,*.heic,*.raw,*.cr2,*.nef | Get-FileHash -Algorithm MD5 | Group-Object -Property Hash | Where-Object { $_.Count -gt 1 } | ForEach-Object { $_.Group | Select-Object Path, Hash } | Export-Csv -Path “$env:USERPROFILE\Desktop\duplicates.csv” -NoTypeInformation |
Output: A CSV on your Desktop grouping every file by MD5 hash, so identical files sit in the same hash group. Review the CSV, delete the copies you don’t want manually. Do not wire the script directly to Remove-Item on a first pass. Ever.
Trade-off: It catches exact duplicates only. A JPEG copy of a PNG will look like two different files to the hash, even if they’re visually identical. That’s a hard limit of hash-based methods.
Free File Explorer is fine for a few hundred images. PowerShell handles exact matches. Neither finds visually similar duplicates at scale. That’s the gap MacSonik Duplicate File Finder fills. Apart from that, this software delete duplicate videos from OneDrive.
|
Scans single folders or entire drives with no cap on file count or size. |
Matches on file content (visually similar images across formats) or file name — you pick. |
Previews every match before deletion, side-by-side. |
|
Handles JPEG, PNG, HEIC, RAW (CR2, NEF), TIFF, BMP, GIF plus video, audio, PDF, Excel, and binary files in the same scan. |
Actions on matched files: move to a separate folder, send to Trash, or delete permanently. |
Runs on macOS and Windows (all current versions). |
Note: For complete pictorial and detailed description of the working refer to the MacSonik Duplicate File Finder & Remover Tool User Manual.
A 30,000-photo library manually cleaned in File Explorer takes days and misses the visually-similar cases entirely. A hash script catches exact duplicates in minutes but leaves your WhatsApp-compressed copies and format-crossovers untouched. Content-based scanning gets both classes in one pass with a preview before anything is deleted.
|
Method |
Best For |
Finds exact duplicates |
Finds similar images |
Bulk delete |
Cost |
Skill Level |
|
File Explorer |
<500 photos, one folder |
Yes (manual eye) |
No |
No |
Free |
Beginner |
|
Microsoft Photos |
iCloud/OneDrive-linked copies only |
Partial |
No |
Limited |
Free |
Beginner |
|
PowerShell hash script |
Exact-match cleanup, technical users |
Yes |
No |
Manual from CSV |
Free |
Advanced |
|
MacSonik Duplicate File Finder |
Any library size, mixed formats, visual duplicates |
Yes |
Yes |
Yes |
Paid (Free scan) |
Beginner |
|
RAW Files (CR2, NEF, ARW, DNG) Bursts from a DSLR create near-identical RAW files, sometimes with matching JPEG previews. Hash tools treat every RAW as unique because of embedded timestamps. Only a content-based scanner catches these, use MacSonik’s File Content mode with the similarity threshold turned up. |
|
WhatsApp, Telegram, Instagram duplicates Messaging apps re-compress photos on send. The version in your Camera Roll and the version in WhatsApp Images are visually identical but byte-different (different resolution, EXIF stripped, re-encoded). Hash scans miss this. Content-based scans catch it. |
|
iCloud Photos and Windows iCloud for Windows syncs a Downloads folder full of full-res originals and a thumbnails cache. Deleting from the wrong location can trigger a re-download loop. Pause iCloud Photos sync before running any cleanup on the Pictures folder. Same rule for OneDrive Camera Roll and Google Drive Backup and Sync. |
|
Same image, different format (JPEG + PNG + HEIC) Same visual content, three different byte patterns, three different hashes. Content-based scanning only. This is where every hash-based tool fails silently, the duplicates stay and you never know. |
|
Photos you edited slightly An original and a cropped version. Or original and a “brightened” version. These are borderline cases. Set your similarity threshold high (90%+) or you’ll get false positives that destroy edits you meant to keep. |
Free tools (Czkawka, dupeGuru, Awesome Duplicate Photo Finder, VisiPics) will find duplicates. Their limits, verified from user reviews on AlternativeTo and Adobe community boards:
Paid tools cost $20–$40. What you’re paying for is preview UI, batch actions, similarity threshold controls, format coverage, and someone answering the support ticket when something breaks.
If your library is under 5,000 photos and mostly exact duplicates, a free tool is fine. Over that, or lots of similar-image cases, paid pays for itself in time saved on the first cleanup.
Mac libraries have three duplicate sources Windows doesn’t: Photos.app’s internal database, iCloud Photos sync artifacts, and Time Machine snapshot residue. Deleting from the Finder while a photo lives inside the Photos library will either fail or corrupt the library index.
MacSonik Duplicate File Finder runs natively on macOS and handles Photos library scans, external drive scans, and iCloud Photos folder scans in one pass. Full walkthrough for Mac users lives at the Duplicate File Finder for Mac product page.
Ans. No. Confirmed by Microsoft support staff on the Microsoft Q&A forum. Windows Photos has a Linked Duplicates hide/show toggle for cloud-synced copies but no scan-and-remove function. Third-party software is required for anything past a manual sort.
Ans. For exact byte-identical duplicates, the PowerShell hash script in Method 3 above. It’s free, uses no third-party software, and outputs a CSV you can review before deleting anything. For visually similar duplicates it won’t work, free tools like dupeGuru or Czkawka handle those but come with the interface and workflow limitations covered in the comparison section.
Ans. Sort by file size first, then compare thumbnails. That catches some. For the rest, use a hash-based tool (PowerShell script, dupeGuru’s Content scan, MacSonik’s File Content mode). Filename comparison alone is unreliable because most duplicates come from copy operations that rename the file.
Ans. Sort by name in File Explorer to group them, then check file size, dimensions, and modification date in the Details pane. If sizes differ, they’re not identical duplicates, one is likely edited or compressed. Preview both before deleting either.
Ans. Only after backing up the target folder and confirming iCloud/OneDrive sync is paused. Deleting a “duplicate” that turns out to be a slightly higher-resolution or slightly different-crop version is the most common regret. A tool with side-by-side preview and a “move to folder instead of delete” option lowers that risk to near zero.
Ans. Real-user reports on Adobe community boards suggest 20–40% of a phone-heavy photo library is duplicate content. On a 60 GB Pictures folder, that’s 12–24 GB back. Higher on libraries built from multiple phone backups over the years.
Ans. If they went to the Recycle Bin: yes, restore from there within 30 days. If Shift+Deleted or emptied from Recycle Bin: only with data recovery software, and only if the disk sectors haven’t been overwritten. Which is why the safety checklist at the top matters.
Ans. MacSonik Duplicate File Finder accepts multiple drives as scan targets in one job and reports duplicates across drives, not just within each. That’s the case where free tools break down, most only scan one location at a time, so a copy on Drive A and a copy on Drive B look unique to each individual scan.
Ans. Yes. Cloud photo libraries have their own duplicate structures and their own dedup tools. Cleaning your PC’s local Pictures folder does not touch what’s stored in iCloud or Google Photos. For iCloud, the same MacSonik toolset supports cloud storage scans; Google Photos requires their built-in “same photos grouped” flow or a browser-based utility.
Under 500 photos, one folder, mostly exact duplicates: File Explorer sort is fine.
Under 5,000 photos, comfortable in a terminal, exact duplicates only: PowerShell hash script.
Over 5,000 photos, or any library with WhatsApp/Instagram/burst content, or you need visually-similar detection: MacSonik Duplicate File Finder and Remover.
The wrong move is the middle ground; trying to manually clean 30,000 photos because you don’t want to pay $40 for a tool. That’s the “another lifetime” trap. Cost your own time at anything above minimum wage and the math is obvious.
Download MacSonik Duplicate File Finder →
About The Author:
I am Neeru Kuchhal, a Technical Content Writer who focuses on turning complex ideas into clear, engaging, and impactful content. I combine creativity with strategy to write blogs, web content, and technical articles that connect with the right audience and support brand goals. I believe great content is not just written. It is thoughtfully created to inform, build trust, and drive action.
Related Post