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
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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