0

I have a problem. I'm coding a batch file in Notepad, and when I type "@echo off" (without the quotes) it turns off echo but also displays "ECHO is off" (again, without the quotes) in the CMD Prompt window. Please help me!!

indiv
  • 17,306
  • 6
  • 61
  • 82
  • 3
    How this youtube channel can help us answering this question ? – Vipin Mar 22 '14 at 14:52
  • It would help to share your actual code, although it could be a possible duplicate of this question: http://stackoverflow.com/questions/14334850/why-this-code-says-echo-is-off – shree.pat18 Mar 22 '14 at 14:54

1 Answers1

0

You could try doing

"@echo off>nul"  (without quotes)

Which might stop it from displaying anything.

ArunRaj
  • 1,780
  • 2
  • 26
  • 48
Behavior
  • 180
  • 11