Difference between revisions of "Duplicate File Finder"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
− | Originally from [https:// | + | Originally from [https://superuser.com/questions/1315365/how-can-i-generate-an-md5-sum-for-a-folder-on-windows Superuser.com] |
− | == | + | ==getsums.bat== |
<PRE> | <PRE> | ||
− | + | @echo off | |
− | + | for /R . %%f in (*.*) do ( | |
− | + | echo | set/p="%%f ~~~ " | |
− | + | certutil -hashfile "%%f" MD5 | findstr /V ":" | |
− | + | ) | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</PRE> | </PRE> |
Revision as of 12:14, 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 ":" )