Hash
Hash
md5;sha512
md5
command
powershell -command $clip=Get-Clipboard; $md5=(Get-FileHash -Path \""%1"\" -Algorithm MD5).Hash; $equal=($clip -eq $md5); Write-Host "MD5: $md5"; Write-Host "Matches current clipboard: $equal"; Write-Host "Press any key to exit"; $null = $Host.UI.RawUI.ReadKey('NoEcho,IncludeKeyDown')
Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell
sha512
command
powershell -command $clip=Get-Clipboard; $sha512=(Get-FileHash -Path \""%1"\" -Algorithm sha512).Hash; $equal=($clip -eq $sha512); Write-Host "SHA512: $sha512"; Write-Host "Matches current clipboard: $equal"; Write-Host "Press any key to exit"; $null = $Host.UI.RawUI.ReadKey('NoEcho,IncludeKeyDown')