I need to create a batch script that starts a different bot at each time and kills it after 10 minutes. Looking posts in this forum I found something like this could work:
Code:
@echo off
start C:\myfolder\1.exe
wmic process where ExecutablePath='C:\\myfolder\\1.exe' delete
but I really don't know how to expand this to multiple bots and to add specific times. This is what the script should do:
Code:
4:10 PM - Run C:\1.exe
4:20 PM - Close C:\1.exe
4:25 PM - Run C:\2.exe
4:35 PM - Close C:\2.exe
Bot automatic restarters can't help with this because I need the specific times and different bots. Any help by someone good in batch scripting?