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
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.