11 lines
208 B
PowerShell
11 lines
208 B
PowerShell
# param (
|
|
# [Parameter(Mandatory=$true)]
|
|
# [string]$infile
|
|
# )
|
|
|
|
if(!$args[0]) {
|
|
Write-Host "Usage: sha256sum <file path>"
|
|
exit 1
|
|
}
|
|
|
|
Invoke-Expression "$PSScriptRoot\winhash.ps1 $infile SHA256" |