You'll need Everything 1.5
Try a simple search first, see if that gives you the desired results.
dupe:
stem == filename name part without extension.
Otherwise, to find files with the same 15 characters, search for:
regex:(.{15}) == capture the first 15 characters.
dupe:1 == find duplicates with the first capture.
To show results where there is at least 3 duplicates, search for:
dupe-min:
Try a simple
dupe:stemdupe:
stem == filename name part without extension.
Otherwise, to find files with the same 15 characters, search for:
regex:(.{15}) dupe:1regex:(.{15}) == capture the first 15 characters.
dupe:1 == find duplicates with the first capture.
To show results where there is at least 3 duplicates, search for:
regex:(.{15}) dupe:1 dupe-min:3dupe-min:
Statistics: Posted by void — Wed Oct 22, 2025 1:14 am