在Windows 10產生md5,sha1雜湊值



Win10內建的Powershell可產生雜湊值

用法:
Get-FileHash 文件路徑 -Algorithm 校驗的Hash值類型| Format-List

MD5雜湊值

Get-FileHash "你的檔案路徑" -Algorithm MD5| Format-List

SHA1雜湊值

Get-FileHash "你的檔案路徑" -Algorithm MD5| Format-List

SHA256雜湊值

Get-FileHash "你的檔案路徑" | Format-List
因為Get-FileHash預設就是用SHA256,所以可不需要參數


ref:

留言