Post
Topic
Board Mining (Altcoins)
Re: Open Source ZEC (ZCash) GPU Miner AMD & NVidia (up to 45 sol/s on RX480)
by
aleksfox
on 31/10/2016, 01:56:01 UTC
I just wish we had pool stats. Its gets old running to the back room and shed to check and see if miners are still hashing  Sad
Just restart miner every 600-900 sec.

On Windows you can use something like that bat...

@echo off

echo:

set executable=zcashgpuclient_silentarmy.exe

set runforseconds=800
set restartinseconds=5
set /a counter=0
timeout 10
:start
start "zcashgpuclient" %executable%
echo:
echo The software will run for %runforseconds% seconds
timeout %runforseconds%
taskkill /f /im %executable%
echo:
echo Restarting the software in %restartinseconds% seconds (%counter%)
timeout %restartinseconds%
set /a counter+=1
echo:
echo:
goto start