是否可以在PowerShell V2.0中计算SHA-1哈希?
我在网上可以找到的唯一信息是PowerShell V4.0。
我不记得在PowerShell V2中是否也通常安装了.NET 3.5。我认为是这样。
您可以随时尝试以下方法,看看是否可行:
$file = 'd:\scripts\sha1.ps1' $sha1 = New-Object System.Security.Cryptography.SHA1CryptoServiceProvider [System.BitConverter]::ToString( $sha1.ComputeHash([System.IO.File]::ReadAllBytes($file)))
用$file您拥有的文件名替换值。
$file