PowerShell/Scripts/get-sha256.ps1
2021-10-16 16:50:10 +02:00

29 lines
655 B
PowerShell
Executable File

<#
.SYNOPSIS
Prints the SHA256 checksum of a file
.DESCRIPTION
This script calculates and prints the SHA256 checksum of the given file.
.PARAMETER file
Specifies the path to the file
.EXAMPLE
PS> ./get-sha256 C:\MyFile.txt
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([string]$file = "")
try {
if ($file -eq "" ) { $file = read-host "Enter the filename" }
$Result = get-filehash $file -algorithm SHA256
"✔️ SHA256 hash is:" $Result.Hash
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}