1.

Solve : Adding comments in a DOS Batch file that are not sent to DOS window?

Answer»

Hello,

How do I ADD COMMENTS to a batch file that are NOT SENT to the DOS WINDOW such as with a "REM" command? I want to include comments for only the programmer.

Tim_C
you can use :: say this was your batch file

@echo off
for,/f;"tokens=1*",%a;in('dir /a /b'),do;echo.%a
::This is a line
cls,&;echo. &;echo,OK



Discussion

No Comment Found