How to check MD5/SHA256 CheckSum in Windows 10?
How to check MD5/SHA256 CheckSum in Windows 10?
Checksum a file in Windows using the built-in certUtil command-line utility:
C:\> certUtil -hashfile <PATH_TO_FILE> <HASH_ALGORITHM>
MD5 checksum example (md5sum):
C:\> certUtil -hashfile C:\file.img MD5
SHA256 checksum example (sha256sum):
C:\> certUtil -hashfile C:\file.img SHA256
Comments
Post a Comment