Windows Batch Script to Calculate MD5 and SHA1 Digest

From LentoMan
Revision as of 11:36, 21 November 2017 by LentoMan (talk | contribs) (Created page with "== Windows Batch Script to Calculate MD5 and SHA1 Digest == Create a text file called '''hash.bat''' with the contents below and put on your desktop, you can then drop files...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Windows Batch Script to Calculate MD5 and SHA1 Digest

Create a text file called hash.bat with the contents below and put on your desktop, you can then drop files on the shortcut to calculate hash digests:

certutil -hashfile %1 SHA1
certutil -hashfile %1 MD5
pause