get sha512 hash code using powershell code example
Example: get sha256 has code using powershell
Get-FileHash -algorithm sha256 'your path' | Format-List
Instead of "-algorithm sha256" you can also use "-algorithm sha512"
Get-FileHash -algorithm sha256 'your path' | Format-List
Instead of "-algorithm sha256" you can also use "-algorithm sha512"