How can I display my data from x.bat for 5 seconds?
When this code runs, it's impossible for me to see anything, it opens and closes immediately.
@ECHO OFF
:BEGIN
ECHO Authorized user
:END
If I use pause, the user still needs to hit a key to close the screen, that's why this should happen automatically.
@ECHO OFF
:BEGIN
ECHO Authorized user
pause
:END
Thanks