ファイルチェックサム Get-FileHash

 Get-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)))

参考


トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS

Last-modified: 2017-05-03 (水) 12:17:25