Viewing MD5 value of file under Windows

Sometimes, for some reasons, we need to check the MD5 value of the file. Under Linux, this is very simple. We only need to use the md5sum command, but we don’t know the corresponding command on windows. Today, I checked some on the Internet. Sure enough, windows also has corresponding commands. And the command can also view the SHA1 value and sha256 value function. The order is as follows:

certutil -hashfile filename MD5
certutil -hashfile filename SHA1
certutil -hashfile filename SHA256

Read More: