Use batch file timeout without echoing command?
If you want to avoid echoing one command, prefix it with @
:
@timeout /t 10 /nobreak
You can disable echoing at all with command
echo off
Normally, you put
@echo off
at beginning of batch file, so commands are not outputed.
Try doing,
timeout /t 10 nobreak>nul