Echo off what is it?
Solved
lea
-
miiforlong -
miiforlong -
Hello,
I am trying to save a .BAT file and I receive the message "echo off" and I can't continue. What is happening? I am completely clueless and therefore lost; To make matters worse, this is very urgent; thank you
I am trying to save a .BAT file and I receive the message "echo off" and I can't continue. What is happening? I am completely clueless and therefore lost; To make matters worse, this is very urgent; thank you
4 answers
@echo on: Display each line on the screen (by default), including the path c:\xxxxx\xxxx\>
@echo off: Only display the command output on the screen
To see the difference, simply open a command prompt by pressing Windows key + R then cmd
and type the following commands:
Then type the following commands:
@echo off: Only display the command output on the screen
To see the difference, simply open a command prompt by pressing Windows key + R then cmd
and type the following commands:
@echo off
echo hello
Then type the following commands:
@echo on
echo hello
must write:
@echo off
echo hello
@echo hello
or:
@echo on
hello
@echo off