Hey kind of a noob with this stuff.
But I set up a task scheduler to when idle for 5 minutes, run a .bat.
I also have it set to "Do not run multiple instances", yet whenever I come back after an hour, there are 2 or sometimes more instances of the bat running.
Any way to easily stop this?
EthDcrMiner64.exe, correct? If so then consider using a similar script as I provided in this answer https://superuser.com/questions/1097766/windows-task-scheduler-run-task-if-task-isnt-running/1097805#1097805. TheSET EXEName=EthDcrMiner64.exeand then right beneath the:StartSpeedFanput your other logic for the mining, etc. Just be sure the logic that checks whether or not the process is already running is at the top and runs first always. It'll only execute the process if it is not running regardless of the Task Scheduler run. – Vomit IT - Chunky Mess Style Dec 14 '17 at 23:21