|
Answer» hi all Its there a way to a BATCH cound down to PROCEED with the command? or at lessed show progress. for ex 1% of download complete.For time to start: Code: [Select]@echo off
ping -n 1 -w 1000 1.1.1.1 >nul echo 3 seconds... echo. ping -n 2 -w 1000 1.1.1.1 >nul echo 2 seconds... echo. ping -n 2 -w 1000 1.1.1.1 >nul echo 1 second... echo. ping -n 2 -w 1000 1.1.1.1 >nul echo. echo STARTING PROGRAM now! REM Add your code here. pause No 100% exact, but close enough. You could also try WAIT, which you can download somewhere (don't know the link, and can't upload because it's .exe)
|