Adding rem as prefix would make the line to be comment
rem this is a line of commented text
To set a variable in CMD, use set command of syntax set {variable_name}={variable_value}.
No double quote to pass in, everything after = is reflected in the value.
To retrieved variable use two % enclosing the variable name
set a= " b"
echo %a%
rem e.g. ` " b"`