PowerShell/Scripts/get-md5.ps1
2021-09-24 17:19:49 +02:00

27 lines
540 B
PowerShell
Executable File

<#
.SYNOPSIS
get-md5.ps1 [<file>]
.DESCRIPTION
Prints the MD5 checksum of the given file
.EXAMPLE
PS> ./get-md5 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 path to file" }
$Result = get-filehash $file -algorithm MD5
"✔️ MD5 hash is" $Result.Hash
exit 0
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}