Duplicate File Finder

From Baranoski.ca
Jump to navigation Jump to search

Originally from Superuser.com

getsums.bat

@echo off
for /R . %%f in (*.*) do (
    echo | set/p="%%f ~~~ "
    certutil -hashfile "%%f" MD5 | findstr /V ":"
)
getsums.bat > output.txt