-
Notifications
You must be signed in to change notification settings - Fork 0
/
SSE.bat
54 lines (37 loc) · 1.27 KB
/
SSE.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
@ECHO OFF
title Miner Auto Launch - Status Checker
:StatusMiner
:: Filename of Blago Miner Version Used
SET BlagoVersion=BlagoMiner_SSE.exe
ECHO -------------------------------------------
ECHO Blago Miner Auto Launch And Status Checker by Spontaneocus
ECHO -------------------------------------------
ECHO.
ECHO.
:: Initiation of Status Check for Blago Miner
ECHO Initiating Status Check of "%BlagoVersion%"
TASKLIST | FINDSTR /I "%BlagoVersion%" >NUL
ECHO.
IF ERRORLEVEL 1 (GOTO :InitiateMiner) ELSE (ECHO Details of Last Status)
:: Report of current Status of Blago Miner
ECHO -------------------------------------------
ECHO Date Time Status
ECHO -------------------------------------------
ECHO %DATE% %time% Mining
ECHO -------------------------------------------
ECHO.
:: Countdown to next check
ECHO Next Status Check (Every 5 Minutes):
timeout /t 300 /NOBREAK
::PING localhost -n 20 >NUL
CLS
GOTO :StatusMiner
:: Procedure for starting Blago Miner if not already started.
:InitiateMiner
ECHO Status checker has confirmed that blago miner is not running.
timeout /t 2 /NOBREAK
ECHO Please standby - Starting Blago Miner...
start %BlagoVersion%
PING localhost -n 6 >NUL
CLS
GOTO :StatusMiner