Advertisement
Deliverator

DCS_Execute.cmd

Mar 2nd, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.78 KB | None | 0 0
  1. REM full paths to the executables you want to start here
  2.  
  3. SET Start_OBS="E:\obs-studio\bin\64bit"
  4. SET Start_TrackIR="C:\Program Files (x86)\NaturalPoint\TrackIR5"
  5. SET Start_SRS="E:\DCS-SimpleRadio-Standalone"
  6. SET Start_UCR="E:\UCR"
  7. SET Start_VoiceAttack="C:\Program Files (x86)\VoiceAttack"
  8. SET Start_DCS="C:\DCS World\bin"
  9.  
  10. REM now we'll start launching applications
  11.  
  12. cd /d %Start_OBS%
  13. start obs64.exe
  14. ping localhost -n 1
  15.  
  16. cd /d %Start_TrackIR%
  17. start TrackIR5.exe
  18. ping localhost -n 1
  19.  
  20. cd /d %Start_SRS%
  21. start SR-ClientRadio.exe
  22. ping localhost -n 1
  23.  
  24. cd /d %Start_UCR%
  25. start UCR.exe
  26. ping localhost -n 1
  27.  
  28. cd /d %Start_VoiceAttack%
  29. start VoiceAttack.exe
  30.  
  31. REM Press any key when you are ready to launch DCS...
  32. pause
  33.  
  34. cd /d %Start_DCS%
  35. start DCS_updater.exe
  36.  
  37. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement