There are several posts about generating MD5 sums for files and/or folders on various Windows platforms. However, none of these worked for me. I tried:
- Windows CertUtil:
CertUtil -hashfile myFileName MD5returns "Access is denied" on all folders (mycmdis running with admin privileges), - HashTab: does not show up in the Properties dialog in Explorer as advertised,
- Summer Properties: does not show up in the Properties dialog either,
- HashCheck: does not allow MD5 for folders, only files,
- md5checker: does not compute the MD5 of the entire folder (only files in it).
At this point I am starting to get a bit desperate. Please note that I am using Windows 7 x64.
For info, if possible, I am trying to find a tool that would allow something like this in Linux:
find DIR -type f -exec md5sum {} \; | sort -k 2 | md5sum

