how to pause batch window
# Pause commands list:
|
ping localhost -n 99999999 >nul # This is if you wanna to pause window.
|
ping localhost -n 10 >nul # This is pause for 10 secounds.
|
ping localhost -n <Secounds number> >nul
/
pause >nul # This is normal pause but if you'll click any key this wil closed.
|
pause # This is pause with echo of pause
/
timeout 10 >nul # Pause 10 secounds but if you click any key it will close.
|
timeout <Secounds number> >nul
|
timeout <Secounds number> # But now with echo of pause
# Pause commands list: