|
Answer» Here is a sample of my BATCH file.
After running :IPCONFIG, at any point can I do a a Ctrl + Break and return to the :MENU label instead of the window closing?
THANKS in advance.
echo off :MENU Echo Press 0 for DISCONNECT Echo Press 1 for IPCONFIG Echo Press 2 for STATS set /p input=Enter 0-2: if %input% == 0 goto :DISCONNECT if %input% == 1 goto :IPCONFIG if %input% == 2 goto :STATS echo. :DISCONNECT cls net use * /delete /y pause cls GOTO :MENU :IPCONFIG cls echo. ipconfig /release pause ipconfig /renew pause cls GOTO :MENU :STATS cls net stats work pause cls GOTO :MENU
|