Windows: Generate file checksum Hash easily

Windows has a build in command line tool called CertUtil, which allows you to generate a file checksum hash. For exmaple: CertUtil -hashfile [FileName] [Hash Algorithm] [Hash Algorithm] could be: MD2 MD4 MD5 SHA1 SHA256 SHA384 SHA512 An example command would be: CertUtil -hashfile c:\myfile.txt SHA512. This command line will give you an output of […]

person Jason Huangaccess_time June 13, 2016launch Read More