7 lines
125 B
PowerShell
7 lines
125 B
PowerShell
param (
|
|
[Parameter(Mandatory=$true)]
|
|
[string]$infile
|
|
)
|
|
|
|
Invoke-Expression "$PSScriptRoot\winhash.ps1 $infile SHA512"
|