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
Does @echo off speed up processing?
Moderator: DosItHelp
Re: Does @echo off speed up processing?
Well, it does not speed up the processing of commands, but the execution of the whole Batch file is faster with @echo off!
Antonio
Code: Select all
yourBatchFile > logFile.txt
Antonio