Answers for "how to change pause text .bat"

0

how to change pause text .bat

You could hide the text from the pause command 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
Posted by: Guest on April-15-2021

Browse Popular Code Answers by Language