Post
Topic
Board Mining (Altcoins)
Re: [CMD] Equihash Miner Autorun (Autorestart / Watchdog) for Ewbf & Claymore & Dstm
by
Acrefawn
on 03/11/2017, 09:22:16 UTC
U can, edit
      CHOICE /C:yn /T:30 /D:n /M "Clean Logs folder now"
to
      CHOICE /C:yn /T:0 /D:n /M "Clean Logs folder now"

/T is timeout of confirmation, where 0 automaticly takes default setting, which is /D

Would it be possible to add 'run bat file' at miner startup or add ability to OC via Nvidia Inspector? Sometimes when GPU crashes, clocks are restored to default.

I'm setting my OC via InvidiaInspector. It's super easy to set GPU profiles via batch files.

Example bat file
Quote
set gpu0coreclock=175
set gpu1coreclock=210
set gpu0memclock=870
rem g1:230/590 g0:175/870 575
set gpu1memclock=565
set targetpower0=104
set targetpower1=114
:CLOCKS
(start "" "C:\Users\Zimpixa\Desktop\nvidia insp\nvidiaInspector.exe" -setBaseClockOffset:0,0,%gpu0coreclock% -setMemoryClockOffset:0,0,%gpu0memclock% -setPowerTarget:0,%targetpower0% -setfanspeed:0,%gpu0fan% -setBaseClockOffset:1,0,%gpu1coreclock% -setMemoryClockOffset:1,0,%gpu1memclock% -setPowerTarget:1,%targetpower1% -setfanspeed:1,%gpu1fan%)

I can't use 'start additional program' feature, because script is checking, if program actually runs, while batch just executes and exits.

I change clean Logs algo to another in new version. Without confirmation.
But your solution is bad, in case of 0 you cant select any answer (because it will be selected automaticaly) so it is simpler to remove it at all. Because reason of question Y/N if answer always N have not any sence...

About NvidiaIspector, you must understand that not all peoples use it and not all peoples who use it have same configuration. Put your NvidiaInspector configuration code in .bat file (for example Overclock.bat), leave this file in miner folder.

In autorun.bat add in next line after
Code:
START "%MinerBat%" "%MinerBat%" && (
this code:
Code:
START "Overclock.bat" "Overclock.bat"