Categories:
Administration (160)
Adware Spyware (39)
Apache (20)
Bluetooth (127)
DOS Commands (2)
General (5)
Internet Connection (21)
Internet Explorer (222)
Media Center (14)
Media Player (135)
Mozilla Firefox (22)
MS Access (9)
Performance (204)
PHP (25)
Programming (36)
Security (111)
Silverlight (22)
Tips (144)
Tools (311)
Tutorials (42)
Windows 10 (122)
Windows 7 (1477)
Windows 8 (1613)
Windows Phone (33)
Windows Server 2008 (165)
Windows Server 2012 (84)
Windows Vista (71)
Windows XP (23)
Tutorial Collections:
Other Resources:
"@" - Stop Echoing the Command
How to stop echoing the command when running in a batch file?
✍: FYIcenter.com
By default, when a command is executed in a batch file,
the command will be echoed on the screen before the execution.
You can stop this default behavior by starting the line with @ as shown in this batch file, quiet.bat:
rem Public comment - Show it on the screen rem Show command and output echo %random% @rem Private comment - Don't show this comment @rem Don't show the next, just show the output @echo %random%
if you run the above batch file, you get:
C:\fyicenter>Quiet.bat C:\fyicenter>rem Public comment - Show it on the screen C:\fyicenter>rem Show command and output C:\fyicenter>echo 11066 11066 9102
As you can see on the screen, all command lines started with @ are not echoed on the output.
⇒ "echo on|off" - Control Echo Setting
⇐ Batch File Structure and Syntax
2017-12-05, 151👍, 0💬
Popular Posts:
What is AccelerometerSt.exe process - Hp Accelerometer System Tray? Process AccelerometerSt.exe is t...
Everytime when connect a USB device the volume lowers by 80% It happen with Soundblaster Audigy SE a...
What are Download Program Files (DPF) for Internet Explorer (IE) browser? Download Program Files (DP...
What is msntb.dll - DLL file - Windows Live Toolbar for Internet Explorer? DLL msntb.dll is installe...
Can I disable Windows service "ClipBook" to speedup my computer? Windows service "ClipBook" - Enable...