Checking a File's Hash - Windows, powershell, command prompt
Use this command prompt on Windows to check the SHA256 or MD5 hash from a file. certutil -hashfile <path> SHA256 certutil -hashfile <path> MD5 Replace the path with the actual file: certutil -hashfile <C:\Users\xxxx\Downloads\kali-linux-2022.3-installer-amd64.iso> SHA256 certutil -hashfile <C:\Users\xxxx\Downloads\kali-linux-2022.3-installer-amd64.iso> MD5 Another way to do this is in PowerShell. Get-FileHash C:\users\xxxx\Downloads\kali-linux-2022.3-installer-amd64.iso Output: Algorithm Hash Path --------- ---- ...