How To Comment A Line In Batch Script

[Solved] How To Comment A Line In Batch Script | Abap - Code Explorer | yomemimo.com
Question : comment in batch

Answered by : maou-shimazu

:: This is a comment.
@Rem Also a comment.

Source : | Last Update : Mon, 07 Mar 22

Question : batch file comment

Answered by : richard-lievesley

Use :: or REM
Eaxmple:
:: comment goes here
REM comment goes here
Inline comments:
commands go here & :: comment goes here

Source : https://stackoverflow.com/questions/11269338/how-to-comment-out-add-comment-in-a-batch-cmd | Last Update : Thu, 29 Sep 22

Question : batch comment out a line

Answered by : richard-lievesley

'Simply add :: before the offending line'
Example:
echo this will print
:: echo but this wont

Source : | Last Update : Thu, 29 Sep 22

Question : batch script comment

Answered by : proud-peacock-8zeh43q6ghfx

Rem This is a comment
:: This is another comment

Source : https://www.tutorialspoint.com/batch_script/batch_script_comments.htm | Last Update : Tue, 23 Feb 21

Answers related to how to comment a line in batch script

Code Explorer Popular Question For Abap