0

How to get MD 5 Hash value for only few specified files out of a folder using Command Prompt

Hari
  • 201

2 Answers2

0

There's no such tool included with Windows.

Microsoft provides FCIV for download. It is a command line tool and supports MD5. Use the -add <file | dir> parameter to specify a single file.

0

The answer is already in the other question you asked:

for %%f in (*) do (  
certutil -hashfile "%%f" MD5  
)

Instead of * you can use *.txt for example for only hashing .txt files.

mosesdd
  • 133