Method One: Check the MD5 code of the file
>certUtil -hashfile <file> MD5
Or:
> Get-FileHash .\<file> -Algorithm MD5 | Format-List
Method Two: Check the SHA256 code of the file
>certUtil -hashfile <file> SHA256
>certUtil -hashfile <file> MD5
Or:
> Get-FileHash .\<file> -Algorithm MD5 | Format-List
>certUtil -hashfile <file> SHA256