Bat File Comment Out A Line

[Solved] Bat File Comment Out A Line | Abap - Code Explorer | yomemimo.com
Question : bat 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 : comment file bat

Answered by : riccardo-biffi

:: This comment WON'T BE printed during execution
REM This comment WILL BE printed during execution, REM is a command like echo

Source : | Last Update : Tue, 04 Oct 22

Question : bat 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

Answers related to bat file comment out a line

Code Explorer Popular Question For Abap