Using ccminer35 I keep getting "ccminer35.exe error please close program"
It has happened about 5 times now and always on the same miner. One of my 750ti's.
Running Windows 7 64bit.
On my PALIT overclock +135 core + 300 mem ccminer 0.5 its ok .
On my MSI overclock +175 core + 550 mem ccminer 0.5 after 6 hours CRASH .
Now try +150 core + 500 mem on MSI .
If you only have problems with one of your cards, you can compare the clocks of all cards with gpu-z.
Maybe the bios has some other default settings and you must lower the clocks for this one card.
In my case i have 4 gigabyte and 2 zotac cards. I edited the bios of the zotac to the gigabyte settings because
i didnt like to use different overclock settings for every card in the afterburner.
ERROR-POPUP-SOLUTION:That's happened to me as well across my 9x nvidia 750 rigs. Completely random across different mobo/cpu/riser combos. I cannot reproduce it. The older versions of ccminer didnt have this issue.
I've also been getting this all day and had to knock down my overclock a ton on my x6 rig to get it stable. At least I think it is, it has been up for 4-5hrs now without crashing which is a lot longer than before.
this happened to one of my rigs 3 times. i put back to stock clocks and now it seems to be stable. and i didnt lose much hash at all.
indeed... i have canceled the OC and the error did not happened again in past 8hrs.
seem like the new version is stressing GPU in higher level so you need more stable OC.
Temporarily I created an app to auto-close any ccminer*.exe dialog window pop-ups, then the batchfile continues to auto-restarts the mining.
Last night it crashes twice for about 5hrs difference.
Maybe your cards or one of your cards is overclocked a bit too much and not 100% stable (see bios comments at the top of this post).
To restart the miner reliable you can import this registry key and youll not get these popups anymore.
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting]
"DontShowUI"=dword:00000001
A second way ist to use the free and easy to use autoit tool to create a (and one click compile to exe) application that will close the popup:
http://www.autoitscript.com/site/autoit/downloads/Local $popHandle = 0
while True
$popHandle = WinWait("ENTER TITLE OF ERRORPOPUP HERE") ;check if the popup exists
if Not ($popHandle = 0) Then
WinActivate ("ENTER TITLE OF ERRORPOPUP HERE") ;activate the popup
sleep(20) ;just a slight delay to allow for slow computers
Send("{Enter}") ;close it
EndIf
WEnd
If you use a bat together with one of this solutions, you can restart the Miner automatically like this. The popup will not stop it anymore.
mining.bat
:start
ccminer35.exe -d 0,1,2,3,4,5 -q -a heavy -v 512 -o stratum+tcp://pool1.heavycoin.zhpool.com:40001 -u worker.1 -p yourpassword --retries 2 --retry-pause=10
ccminer35.exe -d 0,1,2,3,4,5 -q -a heavy -v 512 -o stratum+tcp://pool3.heavycoin.zhpool.com:40001 -u worker.1 -p yourpassword --retries 2 --retry-pause=10
ccminer35.exe -d 0,1,2,3,4,5 -q -a heavy -v 512 -o stratum+tcp://pool4.heavycoin.zhpool.com:40001 -u worker.1 -p yourpassword --retries 2 --retry-pause=10
ccminer35.exe -d 0,1,2,3,4,5 -q -a heavy -v 512 -o stratum+tcp://pool2.heavycoin.zhpool.com:40001 -u worker.1 -p yourpassword --retries 2 --retry-pause=10
goto start
Please donate some coins if youre not loosing mining time anymore:
Groestl: FVcUTnCqxWb28u45bTHNpea1bvz2MrEhsL
Heavycoin: HJDxy3USbkDsnxJTjTMR4Q9gPvrzNRZZ7G
Thanks.
Christian