Was bored and when I was testing some things out I got sick of opening each file individually so I made a simple batch file script that will open all programs at the same time, waiting 3 seconds in between each and it will also start the exe's minimized.
Code:
start /MIN /d "PATH TO FOLDER WITH EXE #1" EXEName.exe
ping 127.0.0.1 -n 3 > nul
start /MIN /d "PATH TO FOLDER WITH EXE #2" EXEName.exe
ping 127.0.0.1 -n 3 > nul
start /MIN /d "PATH TO FOLDER WITH EXE #3" EXEName.exe
ping 127.0.0.1 -n 3 > nul
start /MIN /d "PATH TO FOLDER WITH EXE #4" EXEName.exe
ping 127.0.0.1 -n 3 > nul
start /MIN /d "PATH TO FOLDER WITH EXE #5" EXEName.exe
ping 127.0.0.1 -n 3 > nul
start /MIN /d "PATH TO FOLDER WITH EXE #6" EXEName.exe
ping 127.0.0.1 -n 3 > nul
start /MIN /d "PATH TO FOLDER WITH EXE #7" EXEName.exe
ping 127.0.0.1 -n 3 > nul
start /MIN /d "PATH TO FOLDER WITH EXE #8" EXEName.exe
Example:
Stop/Close your Server Files.
Code:
taskkill /IM EXEName.exe
taskkill /IM EXEName.exe
taskkill /IM EXEName.exe
taskkill /IM EXEName.exe
taskkill /IM EXEName.exe
taskkill /IM EXEName.exe
taskkill /IM EXEName.exe
taskkill /IM EXEName.exe
Example:
1. To Make a Batch File, just make a new Text Document Using Notepad.
2. Then type in the script you want to use/Copy it in.
3. Click SaveAs, if you want the name to be 'Start' You will put the FileName as Start.bat
4. Then you will have to make 'Save as Type' to 'All Files'.