Dress/L/LY/hash-all.ps1

2 lines
193 B
PowerShell
Raw Permalink Normal View History

Get-FileHash * -Algorithm SHA512 | Select-Object -Property @{name = 'FileName'; expression = { Split-Path $_.Path -leaf } }, @{name = 'Hash'; expression = { $_.Hash.ToLower() } } | Format-List