Ignore lines in bat?

Noel_inf1n

Commendable
Jul 30, 2016
35
0
1,530
Issue: Cannot add ignored text in my .bat file

Goal: Add instructions in my bat file for the user but not have the bat try to read it as commands.

PS. Sorry about the choice of category, not sure where this should go...
 
Solution
Put "REM" ahead of the line.

Edit: You can also use the "ECHO" command but it will output the text after ECHO each time you run the batch file.


Thank you very much!
"REM" did the trick for me since i wanted to add text within the bat as comments & instructions for if someone were to edit the bat.