I'm starting this topic because there's a number of cool tricks I've learned that have been helpful for my own work, especially with regard to command prompt windows.
For example, did you know that in Windows Explorer, when you hold the shift key and right-click the mouse on a folder, you get this menu:

This menu opens a command prompt in the folder selected as seen here:

This window is useful for running batch files or other commands.
Another example, when you are in the folder at this command line, to get an editable text file containing the files in that folder, simply type:
dir *.* > files.txt
or any other filename you would like to save the output to. Then open the file in any text editor.