The simple way to make a bat file wait a or delay a set period of time like 60 sec:
ping -n 60 localhost >nul
or
ping -n 60 127.0.0.1 >nul
Below is an example of a simple batch file
@echo off start “command1” “c:\Program Files\….” ping -n 10 localhost >nul start “command2” “C:\Program Files\….” EXIT
Happy Coding!
Be First to Comment