I need some assistance. Is it possible to make it so that this code:
@echo off
@title test
(
echo %test%
) >> test.txt
pause
Would have this in "test.txt"
%test%
Instead of this:
ECHO is OFF.
So basically, I wan't to know if you can put a variable in a text document, without the actual variable showing up in the text document. Thanks