windows powershell校验下载的文件MD5和SHA1值

Windows自带MD5 SHA1 SHA256命令行工具

certutil -hashfile <文件名> <hash类型>

打开windows powershell,进入到指定的文件路径,执行
certutil -hashfile 文件名 MD5
或者
certutil -hashfile 文件名 SHA1

原文地址:https://www.cnblogs.com/InternetJava/p/12543210.html