Verify MD5SUM file on Windows
Posted: Thu Mar 06, 2014 8:11 pm
Download a proper md5sums commandline tool:
http://etree.org/cgi-bin/counter.cgi/so ... 472f07827b
Save it in "C:\Program Files (x86)".
Then open a text editor (no, Word is not a text editor) and copy/paste the following code:
Save this as ".bat" File, and then you can drag-n-drop any MD5SUMS file onto it.
NOTE: This does not work for UNC-paths, because the Windows command prompt can't do UNC.
http://etree.org/cgi-bin/counter.cgi/so ... 472f07827b
Save it in "C:\Program Files (x86)".
Then open a text editor (no, Word is not a text editor) and copy/paste the following code:
Code: Select all
@echo off
cls
@echo.
@echo Verifying checksums...
@echo.
"C:\Program Files (x86)\md5sum.exe" -c %1
@pause
cls
NOTE: This does not work for UNC-paths, because the Windows command prompt can't do UNC.