Advertisement
stressadoo

Batch Clickable Menu

Dec 6th, 2021
1,307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.46 KB | None | 0 0
  1. @echo off
  2. color 0c
  3. title Batch Clickable Menu
  4.  
  5. echo Continue...
  6. pause >nul
  7. goto mainscr
  8.  
  9.  
  10. :mainscr
  11. cls
  12. echo Menu:
  13. echo.
  14.  
  15. menumode f870 "[1] Start" "[2] Pause" "[3] Close"
  16.  
  17. if %ERRORLEVEL% == 1 goto startscr
  18. if %ERRORLEVEL% == 2 goto pausescr
  19. if %ERRORLEVEL% == 3 exit
  20. goto mainscr
  21.  
  22.  
  23. :startscr
  24. cls
  25. echo Not Yet Working!
  26. pause >nul
  27. goto mainscr
  28.  
  29.  
  30. :pausescr
  31. cls
  32. echo You are in pause!
  33. echo Press any key to exit pause!
  34. pause >nul
  35. goto mainscr
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement