Categories:
Administration (10)
Adware Spyware (7)
Apache (10)
Bluetooth (125)
DOS Commands (1)
Edge (28)
General (2)
Internet Explorer (217)
Media Center (12)
Media Player (11)
Mozilla Firefox (18)
PHP (15)
Programming (8)
Security (4)
Silverlight (15)
Tips (17)
Tools (218)
Tutorials (5)
Windows 10 (166)
Windows 7 (636)
Windows 8 (1091)
Windows Phone (33)
Windows Server 2008 (165)
Windows Server 2012 (84)
Windows Server 2016 (23)
Windows Vista (52)
Collections:
Other Resources:
"echo on|off" - Control Echo Setting
How to change the default echo behavior with the "echo on|off" command?
✍: FYIcenter.com
By default, when a command is executed in a batch file,
the command will be echoed on the screen before the execution.
But this behavior can be changed by running the "echo" command.
1. "echo on" - Change the setting to echo all commands.
2. "echo off" - Change the setting to stop echo all commands.
So if you want to stop echoing all commands in the batch file, you can start the batch file with "@echo off". The "@" modifier stops echoing the "echo" command itself.
If later in the batch, you want to resume echoing commands, just insert the "echo on" command.
Here is batch file called, Echo-Off-and-On.bat, which uses the "echo" command to control the echo behavior:
@echo off echo Running command privately for 10 seconds, don't move... ping -n 10 localhost > nul 2> nul echo Running the same command publicly now... echo on ping -n 10 localhost
if you run the above batch file, you get:
C:\fyicenter>Echo-Off-and-On.bat Running command privately for 1 minute, don't move... Running the same command publicly now... C:\fyicenter>ping -n 10 localhost Pinging localhost [::1] with 32 bytes of data Reply from ::1: time<1ms Reply from ::1: time<1ms Reply from ::1: time<1ms Reply from ::1: time<1ms Reply from ::1: time<1ms Reply from ::1: time<1ms Reply from ::1: time<1ms Reply from ::1: time<1ms Reply from ::1: time<1ms Reply from ::1: time<1ms Ping statistics for ::1: Packets: Sent = 10, Received = 10, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms
⇒ %1 and %* - Receive Parameters in Batch File
⇐ "@" - Stop Echoing the Command
2021-07-10, 2251👍, 0💬
Popular Posts:
Can I disable Windows service "IMAPI CD-Burning COM Service" to speedup my computer? Windows service...
Where to find information about what processes are running on Windows 8 and how to manage them? I wa...
How to add a hyperlink to connect a keyword to another slide? I want to have clickable links to help...
Where are Apache server log files located? If you have followed our Apache Server Installation tutor...
What are Exploit-ObscuredHtml Trojan Web Pages? If you have McAfee VirusScan installed, sometimes yo...