Why “ECHO is off” is printed?
up vote
0
down vote
favorite
I am expecting to receive just an output "NO User exists for *" after running this code: FOR /F "tokens=* delims= " %%A IN ('C:windowsSystem32query.exe user /server:<some_IP_address>') DO SET NumDoc1=%%A echo %NumDoc1% But I keep getting: No User exists for * ECHO is off. How do I get rid of "ECHO is off" from my output? Thanks
batch-file command-line
share | improve this question
asked Nov 8 at 23:36
JerryH
3 2
...