Does @echo off speed up processing?

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
OM2
Posts: 6
Joined: 23 Sep 2013 02:48

Does @echo off speed up processing?

#1 Post by OM2 » 25 Sep 2013 05:14

If I have @echo off, does this speed up the processing of commands?

ALSO... if I wanted the output printed to a log file - so I could look at later to see if there were any errors, how do I do this?

Thanks


OM

Aacini
Expert
Posts: 1932
Joined: 06 Dec 2011 22:15
Location: México City, México
Contact:

Re: Does @echo off speed up processing?

#2 Post by Aacini » 25 Sep 2013 05:39

Well, it does not speed up the processing of commands, but the execution of the whole Batch file is faster with @echo off!

Code: Select all

yourBatchFile > logFile.txt


Antonio

Post Reply