How to check MD* or SHA* checksums with command line
Sometimes we need to check MD5 or SHA256 checksums for downloaded files. An easiest way:
certutil -hashfile <FILE> MD5
or with PowerShell:
Get-FileHash <FILE> -Algorithm SHA256
Sometimes we need to check MD5 or SHA256 checksums for downloaded files. An easiest way:
certutil -hashfile <FILE> MD5
or with PowerShell:
Get-FileHash <FILE> -Algorithm SHA256