windows下右键查看文件Hash值

添加“右键>发送到”快速计算校验值
在文件夹地址栏输入

shell:sendto 

进入 “发送到” 引用目录
新建批处理文件(如:checksum.bat),将下面的代码拷贝至文件

@echo OFF
:LOOP
    set index=%1
    if %index%! == ! goto END
    echo.
    echo File   : %index%
    echo.
    set /p="MD5    : "<nul
    certutil -hashfile "%index%" MD5|findstr /V "MD5"|findstr /V "CertUtil"
    set /p="SHA1   : "<nul
    certutil -hashfile "%index%" SHA1|findstr /V "SHA1"|findstr /V "CertUtil"
    set /p="SHA256 : "<nul
    certutil -hashfile "%index%" SHA256|findstr /V "SHA256"|findstr /V "CertUtil"
    shift
    goto LOOP
:END
echo.
pause

在资源管理器中,右键需要校验的文件,发送至"checksum.bat"即可

添加新评论