-
Notifications
You must be signed in to change notification settings - Fork 0
/
start-mining.bat
182 lines (138 loc) · 4.71 KB
/
start-mining.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
rem Skip RunEthMinerCommand section at start
goto PreStart
rem ========== Run EthMiner Command ==========
:RunEthMinerCommand
rem ==================== Your Code Starts Here ====================
rem ==================== Your Code Starts Here ====================
rem ==================== Your Code Starts Here ====================
:START
zil_switcher.exe -m "C:\Users\Artic-Mining-01\Downloads\Zil_Switcher\start.bat" -z "C:\Users\Artic-Mining-01\Downloads\Zil_Switcher\stop.bat" --delay 1
GOTO START
rem ==================== Your Code Ends Here ====================
rem ==================== Your Code Ends Here ====================
rem ==================== Your Code Ends Here ====================
exit /b
rem ========== PreStart ==========
:PreStart
rem Don't echo to standard output
@echo off
rem Set EthMiner Variables
setx GPU_FORCE_64BIT_PTR 0
setx GPU_MAX_HEAP_SIZE 100
setx GPU_USE_SYNC_OBJECTS 1
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_SINGLE_ALLOC_PERCENT 100
setx CUDA_DEVICE_ORDER PCI_BUS_ID
rem set NO_COLOR=Yes
rem Make script variables local
setlocal
rem Set version info
set V=1.9.7 (Donate ETH:0x7F5BB53c415334235a9E42eA03695F11b6553C0D)
rem Switch to the batch file's directory
cd /d %~dp0
rem Set codepage
chcp 437 >nul
rem Set title
title ETHMiNER WatchDog Version %V% by DiGiTaLPaRa_SiMSEK_2023
rem ========== Start ==========
cls
echo ##########################################################################################
echo.
echo ETHMiNERWatchDog Version %V%
echo.
echo AUTHOR: SiMSeK (DiGiTaLPaRa - TO-GitHub)
echo.
echo ##########################################################################################
echo.
echo ETHminerWatchDog
echo 1. Run ethminer.
echo 2. Restart ethminer up to 10 times.
echo 3. Reboot the system.
echo.
echo Additional:
echo - AutoFix #385 issue of Ethminer
echo - AutoFix #189 issue of Ethminer
echo - Log file RunTimes.log
echo - Auto Turn off the Error Dialog
echo.
rem ========== Initializing ==========
:Initializing
rem set loop to zero
set /A loopnum=0
set FileOut=RunTimes.log
echo ETHminerWatchDog Version %V% >> %FileOut%
reg add "HKCU\SOFTWARE\Microsoft\Windows\Windows Error Reporting" /v "DontShowUI" /t REG_DWORD /d 1 /f > nul 2>&1
rem ========== Run Program ==========
:runProgram
rem ========== Calc ==========
rem Increment loop by one
set /A loopnum=loopnum+1
rem Calculate Date & Time
:DateTime
rem Check if WMIC is available
WMIC.EXE Alias /? >nul 2>&1 || goto wmicError
rem Use WMIC to retrieve date and time
for /F "skip=1 tokens=1-6" %%G in ('WMIC Path Win32_LocalTime Get Day^,Hour^,Minute^,Month^,Second^,Year /Format:table') do (
if "%%~L"=="" goto wmicDone
set _yyyy=%%L
set _mm=00%%J
set _dd=00%%G
set _hour=00%%H
set _minute=00%%I
)
:wmicDone
rem Pad digits with leading zeros
set _mm=%_mm:~-2%
set _dd=%_dd:~-2%
set _hour=%_hour:~-2%
set _minute=%_minute:~-2%
rem Date/time in ISO 8601 format:
set pISOdate=%_yyyy%-%_mm%-%_dd% %_hour%:%_minute%
goto DateTimeOK
:wmicError
for /f "tokens=2-4 delims=/ " %%a in ('date /t') do (set pdate=%%c-%%a-%%b)
for /f "tokens=1-2 delims=/:" %%a in ('time /t') do (set ptime=%%a:%%b)
set pISOdate=%pdate% %ptime%
:DateTimeOK
rem ========== Output ==========
rem ========== Screen Output ==========
echo.
echo ===============================================================================
echo %pISOdate%
echo ETHminerWatchDog has run %loopnum% times.
echo ===============================================================================
echo.
rem ========== File Output ==========
echo %pISOdate% ETHminerWatchDog has run %loopnum% times.>>%FileOut%
rem ========== Execution Code ==========
call :RunEthMinerCommand
rem Wait 5s
timeout /T 5 /NOBREAK>NUL
rem Check 10 loops
if %loopnum% gtr 9 goto ErrorHandling
rem Loop
goto runProgram
rem ========== Error Handling ==========
:ErrorHandling
rem ========== Error Screen Output ==========
echo.
echo ===============================================================================
echo %pISOdate%
echo ETHminerWatchDog has run %loopnum% times.
echo System restart required.
echo.
echo.
echo.
echo Rebooting now (%pISOdate%).
echo ###############################################################################
echo.
rem ========== Error File Output ==========
echo %pISOdate% ETHminerWatchDog has run %loopnum% times.>>%FileOut%
echo System restart required. Rebooting now (%pISOdate%).>>%FileOut%
echo. >>%FileOut%
echo. >>%FileOut%
rem ========== System Reboot ==========
shutdown -r -f -t 0
rem ========== End ==========
endlocal
rem ========== EoF ==========