How to Delete Duplicate Photos on PC (2026): 4 Methods Ranked by Speed and Safety

Written By
Neeru Kuchhal

Updated on
July 29th, 2026

12 minutes Read
5/5 - (3 votes)

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.

Why Does This Post Exist?

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.

Before You Delete Anything: 60-Second Safety Checklist

Mass photo deletion is one-way. Do these three things first.

  1. Back up the Folder You’re About to Clean. External drive, cloud, whichever. Non-negotiable.
  2. Disable Auto-Sync on iCloud, OneDrive, or Google Photos for that folder. Otherwise a duplicate you delete on your PC may pull down a fresh copy in seconds.
  3. Empty Your Recycle Bin AFTER the cleanup, not before. That way you have a 30-day rollback window if you nuke something you need.

Skipping this step can result in losing photos you wanted to keep.

Exact Duplicates vs Similar Duplicates: Pick Your Detection Type

This is the single most important concept, and 90% of guides skip it.

  • Exact duplicates are byte-identical copies. Same file, different filename, possibly different folder. A hash (MD5, SHA-256) of both files will match. File Explorer, PowerShell, and most cheap tools handle these.
  • Similar duplicates are perceptually the same image but not byte-identical. Same photo saved as JPEG and PNG. Same photo at 4032×3024 and 1080×810 after WhatsApp compression. Two frames from a burst. An original and a lightly cropped version. Hashes will not match. You need a tool that compares pixel data or perceptual hashes (pHash).

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.

Method 1: File Explorer (Manual Sort: For Small Libraries Only)

Use when: under 500 photos in a single folder.

  1. Open File Explorer, go to the folder.
  2. View the Extra Large Icons so thumbnails are readable.
  3. Toggle the Details pane (View → Details pane).
  4. Sort by; Name, then re-sort by Size. Identical files stack next to each other on both sorts.
  5. Ctrlclick each duplicate. Shift + Delete to skip Recycle Bin, or plain Delete to keep the safety net.

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.

Method 2: Microsoft Photos: Linked Duplicates Toggle

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.

  1. Open Photos threedot menu Settings.
  2. Turn Linked Duplicates off.
  3. Return to Collections. Duplicate copies now show separately.
  4. Select the ones you want gone → trash icon Delete.

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.

Method 3: PowerShell Hash Script (Free, Exact Matches Only)

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.

Method 4: MacSonik Duplicate File Finder and Remover (Recommended for Bulk Cleanup)

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.

What Does It Do?

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).

Working Steps

  1. Launch MacSonik Duplicate File Finder.
  2. Click Add Files or Add Folder. Point it at your Pictures folder, an external drive, or multiple folders at once.
  3. Choose comparison mode: File Content (finds visually similar photos, including format-crossovers) or File Name (finds identical names only).
  4. Choose scan scope: Root Folder Only or Root + Subfolders (deep scan).
  5. Choose processing mode: Single (review one at a time) or Batch (act on the whole group at once).
  6. Run the scan. Duplicates and unique files display in separate panes.
  7. Preview matches. Select the copies you want gone.
  8. Choose action: Move to Separate Folder, Move to Trash, or Delete Permanently.

Note: For complete pictorial and detailed description of the working refer to the MacSonik Duplicate File Finder & Remover Tool User Manual.

Why is it the right pick if your library is large?

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 Comparison

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

Special Cases Most Guides Skip

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 vs Paid Duplicate Photo Finders: The Honest Trade

Free tools (Czkawka, dupeGuru, Awesome Duplicate Photo Finder, VisiPics) will find duplicates. Their limits, verified from user reviews on AlternativeTo and Adobe community boards:

  • Awesome Duplicate Photo Finder has no batch delete. You review 300 hits one file at a time. One reviewer clocked 165 minutes to scan 80K photos and gave up on the delete pass.
  • Czkawka is open source and fast on Linux/Mac; Windows builds are functional but rougher.
  • dupeGuru works but the interface hasn’t been updated meaningfully in years.
  • VisiPics is Windows-only and abandoned since 2011.

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 Users: Same Photos, Different Playbook

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.

Frequently Asked Questions

Q1. Does Windows 11 have a built-in duplicate photo finder?

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.

Q2. What’s the best free way to delete duplicate photos on a PC?

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.

Q3. How do I find duplicate photos with different filenames?

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.

Q4. How do I find duplicate photos with the same name but different content?

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.

Q5. Is it safe to delete duplicate photos?

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.

Q6. How much storage will I actually recover?

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.

Q7. Can I recover deleted duplicate photos?

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.

Q8. What about duplicate photos across multiple external drives?

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.

Q9. Do I need to clean duplicates from iCloud/Google Photos separately?

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.

Bottom Line

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

100%
Secure Software
24× 7
Technical Support
5M+
Downloads
30 Days
Money Back Guarantee