Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
DiggerPhil
on 01/08/2014, 23:05:02 UTC
I can't get above 87% efficiency with nvMiner on doom with 750 ti's.

I've tried creating a loop.bat with a killtimer of 60, and I still get around 95%.  Keep in mind that the cards are not overclocked.  Anyone have any ideas?

no but can i see your bat restart i cant get one going   please  Smiley
EDIT:i definitely need a bat restart on this coin

Here's one that was posted on cryptomining blog a few weeks ago. Might be overly elaborate for some, but gets the job done.

Code:
@echo off
echo -------------------------------------------------------------------
echo Simple script to restart your miner software after a period of time
echo -------------------------------------------------------------------
echo:
set executable=ccminer.exe
set commandline=-q -a x11 -o stratum+tcp://pool -u user -p pass
set runforseconds=7200
set restartinseconds=10
set /a counter=0
:start
start "Miner Window" %executable% %commandline%
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