- 追加された行はこの色です。
- 削除された行はこの色です。
- PowerShell/セキュリティ/ファイルチェックサム Get-FileHash へ行く。
- PowerShell/セキュリティ/ファイルチェックサム Get-FileHash の差分を削除
* ファイルチェックサム Get-FileHash [#w29ef21c] Get-FileHash -Algorithm MD5 "C:\foo.exe" *** PowerShell ver4より前の場合 [#a2aa851a] $path = "C:\foo.txt" $md5 = New-Object -TypeName System.Security.Cryptography.MD5CryptoServiceProvider $hash = [System.BitConverter]::ToString($md5.ComputeHash([System.IO.File]::ReadAllBytes($path))) ** 参考 [#s6eca095] - http://stackoverflow.com/questions/10521061/how-to-get-an-md5-checksum-in-powershell