Some useful snippets regarding some windows commands.
Execute a type of all text files specified and create a new file.
This is just an example for "forfile" command. Type *.txt will performe a type of all txt files.
REM all.txt will contain all contents of files eml forfiles /m *.eml /C "CMD /c type @file >> all.txt"