How to get MD5 hash only (Batch Script)
Posted: 05 May 2021 17:52
I'm writing a batch script that will check the MD5sum of all files in a folder
for /r %%f in (*) do (certutil -hashfile "%%ff" MD6) >> output.txt
This one is working but any idea how can I get the hash only, without the other text
Those text highlighted in yellow only

for /r %%f in (*) do (certutil -hashfile "%%ff" MD6) >> output.txt
This one is working but any idea how can I get the hash only, without the other text
Those text highlighted in yellow only
