Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. @echo off
  2. title TeamSpeak Restarter 30m -
  3. color 4a
  4. goto wait
  5.  
  6. :wait
  7. echo Waiting 30 Minutes till restart %time%
  8. ping -n 1600 127.0.0.1 > NUL
  9. goto restarter
  10.  
  11. :restarter
  12. echo Getting Server path Execution Time > %time%
  13. cd C:\Users\Administrator\Desktop\TeamSpeak Server\teamspeak3-server_win64
  14. ping -n 5 127.0.0.1 > NUL
  15. echo Killing Server Execution Time > %time%
  16. taskkill /F /IM ts3server_win64.exe
  17. ping -n 5 127.0.0.1 > NUL
  18. echo Starting Server Execution Time > %time%
  19. start ts3server_win64.exe
  20. echo Repeating Process Execution Time > %time%
  21. ping -n 5 127.0.0.1 > NUL
  22. goto wait
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement