Advertisement
the3picCucumber

Save this as a .bat file and execute ( :

Apr 14th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. @echo off
  2. title Parents Only!!!
  3. color a
  4. :START
  5. echo Type 1 to say five minute warning
  6. echo Type 2 to say get off
  7. echo Type 3 to say you lost your coputor time
  8. echo Type 4 to shutdown his computor
  9. echo Type 5 to close
  10. set/p "cho=>"
  11.  
  12. if %cho%==1 goto FIVE
  13. if %cho%==2 goto GET
  14. if %cho%==3 goto LOST
  15. if %cho%==4 goto SHUTDOWN
  16. if %cho%==5 goto CLS
  17.  
  18. :FIVE
  19. msg * You have five minutes to get off
  20. echo Command successfully executed!
  21. goto START
  22.  
  23. :LOST
  24. msg * You have lost your computor time
  25. echo Command successfully executed!
  26. goto START
  27.  
  28. :SHUTDOWN
  29. msg * Shutting down in 15 seconds!
  30. shutdown.exe /s /t 15
  31. echo Command successfully executed!
  32. goto START
  33.  
  34. :CLS
  35. exit
  36. echo Command successfully executed!
  37. goto START
  38.  
  39. :GET
  40. msg * Time for you to get off!
  41. echo Command successfully executed!
  42. goto START
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement