If you want to continue using only claymore straps and rxboost, you can use this bat file
You just have to download PStools from
https://docs.microsoft.com/en-us/sysinternals/downloads/pssuspendjust adjust the runforseconds to pause after claymore has added straps and rxboost
@echo off
echo -------------------------------------------------------------------
echo Simple script to use Claymores rxboost And straps By DrX
echo -------------------------------------------------------------------
echo:
set executable=EthDcrMiner64.exe
set executable2= MINER.EXE
set commandline= -dbg -1 -mport -0 -benchmark 1 -strap 1 -rxboost 1
set commandline2= MINER COMMANDS
set runforseconds=20
set restartinseconds=10
set /a counter=0
timeout %restartinseconds%
set GPU_MAX_ALLOC_PERCENT 100
set GPU_USE_SYNC_OBJECTS 1
set GPU_MAX_HEAP_SIZE 100
:start
start "Miner Window" %executable% %commandline%
echo:
echo The software will run for %runforseconds% seconds
timeout %runforseconds%
pssuspend.exe %executable%
start "Miner Window" %executable2% %commandline2%
pause
DrX thanks thats a much better solution than running code from unknown source. Like i said i dont run Claymore anymore but for those that simply cant let go...this is the best solution ive seen for both earnings for the miner and for security of their rigs.
Thank You !
I also have a small .BAT on my side here it is, I modified the configuration of claymore, it starts up first, loads the configuration rxboost 1, straps 2 etc .. then then runs in a loop, does not detect any GPU , it relaunches reloads the configuration,
I chose this type of configuration because sometimes the gpu crashes after X days, relaunches the gpu without optimizations
@echo off
Echo Run Claymore Straps
start /D Claymore "Claymore" cmd /k "start.bat"
Echo Pause 30sec
timeout /t 30 /nobreak
Echo Run Power Mining
start /MAX /D PhoenixMiner "Mining" cmd /k "start_miner.bat & exit"
Echo Done