Windows10 (12 x AMD 8GB RX570)
AMD Driver = 27.20.14501 a.k.a. 20.12.1
lolminer 1.28 script.
@echo off
setlocal enableDelayedExpansion
Rem #################################
Rem ## Begin of user-editable part ##
Rem #################################
set "POOL=ssl://us1.ethermine.org:5555"
set "WALLET=walletnumber.minerID"
Rem #################################
Rem ## End of user-editable part ##
Rem #################################
:loop
lolMiner.exe --algo ETHASH --tstop 90 --pool !POOL! --user !WALLET! --watchdog exit
if %ERRORLEVEL% == 42 (
timeout 10
goto loop
)
pause
Using 1.28 script with 1.30 lolminer software gets this screen
+---------------------------------------------------------+
| _ _ __ __ _ _ _____ ___ |
| | | ___ | | \/ (_)_ __ ___ _ __ / | |___ / / _ \ |
| | |/ _ \| | |\/| | | '_ \ / _ \ '__| | | |_ \| | | | |
| | | (_) | | | | | | | | | __/ | | |_ ___) | |_| | |
| |_|\___/|_|_| |_|_|_| |_|\___|_| |_(_)____/ \___/ |
| |
| This software is for mining |
| Autolykos V2 |
| Ethash, Etchash |
| Equihash 144/5, 192/7, 210/9 |
| BeamHash III |
| ZelHash (EquihashR 125/4/0) |
| Cuck(ar)oo 29 |
| Cuckaroo 30 CTX |
| Cuckatoo 31/32 |
| |
| |
| Made by Lolliedieb, July 2021 |
+---------------------------------------------------------+
Setup Miner...
Press any key to continue . . .
lolminer 1.30 script
@echo off
setlocal enableDelayedExpansion
Rem #################################
Rem ## Begin of user-editable part ##
Rem #################################
set "POOL2=ssl://us2.ethermine.org:5555"
set "POOL=ssl://us1.ethermine.org:5555"
set "WALLET=walletnumber.minerid"
Rem #################################
Rem ## End of user-editable part ##
Rem #################################
if exist %CD%"\lolMiner.exe" goto infolder
echo "Searching for lolMiner.exe, because is not in this folder.That could take sometime..."
for /f "delims=" %%F in ('dir /b /s "C:\lolMiner.exe" 2^>nul') do set MyVariable=%%F
if exist %MyVariable% goto WindowsVer
echo "lolMiner.exe is not found in the system, that could be blocked by Windows Defender or Antivirus "
goto END
:infolder
set MyVariable=%CD%\lolMiner.exe
:WindowsVer
for /f "tokens=4-5 delims=. " %%i in ('ver') do set VERSION=%%i.%%j
if "%version%" == "10.0" goto W10
goto OtherW
:W10
%MyVariable% --algo ETHASH --pool !POOL! --user !WALLET! --pool !POOL2! --user !WALLET! --watchdog exit
if %ERRORLEVEL% == 42 (
timeout 10
goto W10
)
goto END
:OtherW
%MyVariable% --algo ETHASH --pool !POOL! --user !WALLET! --pool !POOL2! --user !WALLET! --watchdog exit --nocolor
if %ERRORLEVEL% == 42 (
timeout 10
goto OtherW
)
:END
pause
Again, I get the same screen as above when I run
Which GPU are you using? have you try with the standard bat file if works?. All information is good to try to reproduce the problem