在 Windows 系统中查看下载文件的 MD5,SHA1,SHA256 校验码

Windows11 系统,使用系统自带的 PowerShell 或者 cmd ,一句话命令

PowerShell 终端:

Get-FileHash [绝对路径] -Algorithm [算法类型] | Format-List

如:验证 D 盘 Downloads 目录中镜像的哈希值

Get-FileHash D:\Downloads\windows.iso -Algorithm SHA256 | Format-List
Algorithm //算法类型
Hash //文件的 Hash 值
Path //文件的绝对路径

该命令支持的算法类型如下:

SHA1、SHA256

SHA384、SHA512

MACTripleDES

MD5、RIPEMD160

CMD(命令提示符):

certutil -hashfile filename(文件路径) 校验码类型

如:验证 D 盘 Downloads 目录中镜像的哈希值

certutil -hashfile D:\Downloads\windows.iso SHA256

该命令支持的算法类型如下:

SHA1、SHA256、MD5

留下评论

您的邮箱地址不会被公开。 必填项已用 * 标注