I posted a question on Monday about how I can calculate SHA1 hash within powershell。
由此得到的代碼如下:Powershell V2.0 SHA1計算
$file = 'C:\Zip\File.zip'
$sha1 = New-Object System.Security.Cryptography.SHA1CryptoServiceProvider
[System.BitConverter]::ToString($sha1.ComputeHash([System.IO.File]::ReadAllBytes($file)))
此代碼工作完全和做什麼,我需要做的,但此刻我必須指定我想爲要計算的SHA1哈希的文件。有什麼辦法可以讓它計算該'zip'文件夾中每個文件的哈希值。
我一直在試圖通過使用循環等來做到這一點,我只是沒有搬到任何地方。這並不能幫助我的PowerShell技能令人震驚。
任何幫助,非常感謝。
如果你已經做出了嘗試,展現你的代碼,有人或許可以告訴你,你出了問題。在沒有顯示代碼的情況下說「爲什麼不工作」是毫無意義的。 – alroc 2014-12-04 13:50:55