How to override pause command in batch script?
Answers
Answered by
1
You could hide the text from the pausecommand by using this:
pause >nul
Then you could echo your own message to tell the user it has paused:
echo The batch file has paused
So the full script might look like this:
@echo off echo Hello World! echo The batch file has paused pause >nul
Hope this helps :)
pause >nul
Then you could echo your own message to tell the user it has paused:
echo The batch file has paused
So the full script might look like this:
@echo off echo Hello World! echo The batch file has paused pause >nul
Hope this helps :)
Anonymous:
Hey sorry for everything.......
Similar questions