Going Batsh*t over BAT files
I don't know why I didn't pay much attention to BAT / CMD commands in the past . Recently though, I've bee using them more and more for all sorts of tasks, especially when accessing files with long path names. My current "Going Bats" test file is this: @echo off rem This is one way to include a comment. Next 2 lines output CRLF's echo. <-- causes a line skip, aka print a CRLF echo. echo This text will be printed on the CMD console. "Hello World" echo. echo See Go BAts foleder in Other Sw tab echo. color 1E <-- causes my console to display as Yellow text on Blue background <-- See also MSFT Learn COLOR CMD ( here ) ...