Is there a built-in method for computing an SHA-1 or MD5 hash in Windows 7?

link|improve this question

I'd support incorporating sha1 into the title of the other question and closing this one – Brian Webster May 14 '11 at 16:51
feedback

5 Answers

up vote 4 down vote accepted

There is no built-in utility, however Microsoft provides a command-line utility as a free download:

Availability and description of the File Checksum Integrity Verifier utility

link|improve this answer
feedback

It's not exactly built-in, but at least you don't have to download any new software to make it work. You can create a powershell script to compute the MD5sum of files. The actual script can be found here:

http://www.ahmadsoft.org/powershelljunkie/index.html

Copy that text into a file called something like, "ps-md5sum.ps1" and save it somewhere. When you need to compute the hash of a file, open up PowerShell in the directory of the file you need to check, and then run it:

[PS] C:\> ps-md5sum.ps1 file-of-choice.exe

And it should return the hash of that file.

link|improve this answer
This PS1 script from Joe Pruitt emulates the UNIX md5 behavior: devcentral.f5.com/weblogs/Joe/archive/2009/05/18/… – Brian Reiter Jul 21 '10 at 22:52
feedback

There's nothing built-in. Might I suggest using HashTab?

link|improve this answer
feedback

Again, nothing built in, so I use HashCalc.

HashCalc Screenshot

link|improve this answer
Really great program – TheLQ Jul 22 '10 at 2:03
feedback

No built-in tools.

I use the HashCheck shell extension:

alt text

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.