Files
general-scripts-and-system-…/Windows-Scripts/sha256sum.ps1
T
2026-07-18 16:27:51 -06:00

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"