[HowTo] Obtener el hash de un archivo desde Windows 10
Posted: martes, 19 de febrero de 2019 by Termita in Etiquetas: hash, md5, sha, windows
0
Existen 2 formas:
1. CertUtil
Desde Línea de Comandos (ms-dos):
certutil -hashfile archivo SHA512
2. Get-FileHash
Desde PowerShell
Get-FileHash -Path archivo -Algorithm SHA512
+ información:
https://www.nextofwindows.com/5-ways-to-generate-and-verify-md5-sha-checksum-of-any-file-in-windows-10