mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 20:44:17 +01:00
29 lines
639 B
PowerShell
Executable File
29 lines
639 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Prints the MD5 checksum of a file
|
|
.DESCRIPTION
|
|
This script calculates and prints the MD5 checksum of the given file.
|
|
.PARAMETER file
|
|
Specifies the path to the 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 # success
|
|
} catch {
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
|
exit 1
|
|
}
|