ファイルチェックサム Get-FileHashGet-FileHash -Algorithm MD5 "C:\foo.exe" PowerShell ver4より前の場合$path = "C:\foo.txt" $md5 = New-Object -TypeName System.Security.Cryptography.MD5CryptoServiceProvider $hash = [System.BitConverter]::ToString($md5.ComputeHash([System.IO.File]::ReadAllBytes($path))) 参考 |
|