Created
September 14, 2021 08:59
-
-
Save Neko7sora/46bf73307381f35f8a8b3dfaae68cefe to your computer and use it in GitHub Desktop.
hashcheck.bat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
echo ---------- | |
:loop | |
if "%~1" == "" goto end | |
certutil -hashfile %1 MD5 | |
certutil -hashfile %1 SHA1 | |
certutil -hashfile %1 SHA256 | |
echo ---------- | |
shift | |
goto loop | |
:end | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment