Advertisement
J2897

Delayed Startup

Nov 2nd, 2014
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.38 KB | None | 0 0
  1. :: Released under the GNU General Public License version 3 by J2897.
  2.  
  3. @echo OFF
  4. pushd "%~dp0"
  5. title Delayed Startup
  6.  
  7. :: http://ss64.com/nt/start.html
  8. :: http://ss64.com/nt/timeout.html
  9. :: http://ss64.com/nt/syntax-esc.html
  10.  
  11. echo Prepairing to start programs ...
  12. timeout /t 30
  13. echo.
  14.  
  15. echo Launch Mumble and connect to server ...
  16. START "" /D "C:\Program Files\Mumble\" "C:\Program Files\Mumble\mumble.exe" mumble://192.168.0.10:64738?title=Root^&version=1.2.0
  17. timeout /t 60
  18. echo.
  19. :: http://wiki.mumble.info/wiki/Mumble_URL
  20.  
  21. echo Launch TeamSpeak and connect to server ...
  22. START "" /D "C:\Program Files\TeamSpeak 3 Client\" "C:\Program Files\TeamSpeak 3 Client\ts3client_win32.exe" ts3server://"123.123.123.123/?port=9987&nickname=J2897 (PC)"
  23. timeout /t 60
  24. echo.
  25.  
  26. echo Launch Pageant and load keys ...
  27. START "" /D "C:\Users\J2897\Keys\" "C:\Program Files\PuTTY\pageant.exe" key1.ppk key2.ppk key3.ppk
  28. timeout /t 300
  29. echo.
  30.  
  31. echo Launch Thunderbird ...
  32. START "" /D "C:\Program Files\Mozilla Thunderbird\" /MIN "C:\Program Files\Mozilla Thunderbird\thunderbird.exe"
  33. timeout /t 600
  34. echo.
  35.  
  36. echo Launch WebMon ...
  37. START "" /D "C:\Program Files\WebMon\" "C:\Program Files\WebMon\WebMon.exe"
  38. timeout /t 600
  39. echo.
  40.  
  41. echo Launch TrueCrypt ...
  42. START "" /D "C:\Program Files\TrueCrypt\" "C:\Program Files\TrueCrypt\TrueCrypt.exe" /q preferences /a logon
  43. timeout /t 600
  44. echo.
  45.  
  46. popd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement