Post
Topic
Board Mining (Altcoins)
Re: PhoenixMiner 2.9e: fastest Ethereum/Ethash miner with lowest devfee (Windows)
by
Digital_Seytan
on 09/05/2018, 10:57:37 UTC
I need a good working start.bat command file, which switches from one wallet to another wallet with a time limit

i used this bat this works not so good.
Code:
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

:wallet1
echo Starting Mining Process for first wallet
:: Update the "C:\Mining\PhoenixMiner" with the actual full path of your miner location
start "Phoenix Miner for Wallet #1" /D "C:\Mining\PhoenixMiner" PhoenixMiner.exe -pool us2.ethermine.org:4444 -pool2 us1.ethermine.org:14444 -wal -gpus 1234567 -pass x -logfile *
timeout /t 60
taskkill /im PhoenixMiner.exe /f /t
goto wallet2

:wallet2
echo Starting Mining Process for second wallet

:: Update the "C:\Mining\PhoenixMiner" with the actual full path of your miner location
start "Phoenix Miner for Wallet #2" /D "C:\Mining\PhoenixMiner" PhoenixMiner.exe -pool us2.ethermine.org:4444 -pool2 us1.ethermine.org:14444 -wal -gpus 1234567 -pass x -logfile *
timeout /t 60
taskkill /im PhoenixMiner.exe /f /t
goto wallet1