Not worthless at all: you can use a shell script for an automatic relaunch:
in a .bat:
echo -------------------------------------------------------------------
echo Simple script to restart your miner software after a period of time
echo -------------------------------------------------------------------
echo:
set executable=lolMiner-mnx.exe
set commandline= --server mnx.suprnova.cc --port 7076 --user xxxxx --pass x --platform 1
set /a counter=0
:start
%executable% %commandline%
echo:
echo Restarting the software (%counter%)
set /a counter+=1
echo:
echo:
goto start
Did you test this script for hours mining?
If you look back in this thread you'll see a different script that I posted.
At first I ran lolMiner directly from the batch file like yours does and seemed to work fine, restarting when miner stopped.
The issue I had was after ~6 hours of run time the cmd window of the batch running the miner crashed or simply closed completely.
That's why I changed the script to open a new cmd process with the miner running inside instead. restarting this cmd instead aswell.
Although the script that I posted is for multiple GPUs, this was not for me and I am only running a single card.