Generate hash values for Windows
- In Powershell, run this command to generate hash values:
SHELL
Get-FileHash <filename> -Algorithm <hash_algorithm> | Format-ListWhere:
- filename is the file used to create the hash value.
- hash_algorithm is the hash algorithm, for example, SHA256, SHA1, or MD5.
See Get-FileHash for more information.