Difference between revisions of "Duplicate File Finder"

From Baranoski.ca
Jump to navigation Jump to search
 
Line 8: Line 8:
 
     certutil -hashfile "%%f" MD5 | findstr /V ":"
 
     certutil -hashfile "%%f" MD5 | findstr /V ":"
 
)
 
)
 +
</PRE>
 +
 +
<PRE style="color:white;background-color:black;font-weight:bold;font-size:1.2em;">
 +
getsums.bat > output.txt
 
</PRE>
 
</PRE>

Latest revision as of 12:15, 22 April 2025

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