欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Windows命令查看文件的MD5/SHA1/SHA256编码

程序员文章站 2024-03-16 18:33:16
...

xxx表示文件的绝对路径名:

命令:

certutil -hashfile xxx MD5

certutil -hashfile xxx SHA1

certutil -hashfile xxx SHA256

示例:

Microsoft Windows [版本 10.0.17134.228]
(c) 2018 Microsoft Corporation。保留所有权利。

C:\Users\Jiaozl\Desktop\应用列表>cecertutil -hashfile ../爱你.vbs
SHA1 的 ../爱你.vbs 哈希:
b25d5d7bbb9d58d9925c6e900642cc5cb57cfcc2
CertUtil: -hashfile 命令成功完成。

C:\Users\Jiaozl\Desktop\应用列表>certutil -hashfile ../爱你.vbs MD5
MD5 的 ../爱你.vbs 哈希:
d0a1a4d954e3b4a839bfaa2bd187fef4
CertUtil: -hashfile 命令成功完成。

C:\Users\Jiaozl\Desktop\应用列表>certutil -hashfile ../爱你.vbs SHA1
SHA1 的 ../爱你.vbs 哈希:
b25d5d7bbb9d58d9925c6e900642cc5cb57cfcc2
CertUtil: -hashfile 命令成功完成。

C:\Users\Jiaozl\Desktop\应用列表>certutil -hashfile ../爱你.vbs SHA256
SHA256 的 ../爱你.vbs 哈希:
713f814b41672cd130bb8e196b2376a04e15ec60fedc2757233f577c4dc1188f
CertUtil: -hashfile 命令成功完成。

C:\Users\Jiaozl\Desktop\应用列表>