[CONTENT] Checking of the integrity and safety of the file in Windows CMD (Complete List of Command)

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