Post
Topic
Board Mining
Re: Mining with invisible/hidden console on windows?
by
Baazee
on 09/05/2013, 20:50:25 UTC
With this guide, you can start a miner with parameters pack so that you have only one *.exe file.

http://baazee.de/files/miner/bcms.zip --> CPU
http://baazee.de/files/miner/bcgs.zip --> GPU
Unpack archive.
Follow the instructions in the info.txt

(Are in German.) --> http://translate.google.com/

files/start.bat

visible

@echo off
echo Set WshShell = WScript.CreateObject( "WScript.Shell" ) > start32.vbs
echo WshShell.Run "minerd.exe --url=http://mining.baazee.de:80 --userpass=user:pass" ,1,True >> start32.vbs
ping 1.1.1.1 -n 1 -w 1000 > nul
start start32.vbs
ping 1.1.1.1 -n 1 -w 1000 > nul
del start32.vbs /s /q

invisible

@echo off
echo Set WshShell = WScript.CreateObject( "WScript.Shell" ) > start32.vbs
echo WshShell.Run "minerd.exe --url=http://mining.baazee.de:80 --userpass=user:pass" ,0,True >> start32.vbs
ping 1.1.1.1 -n 1 -w 1000 > nul
start start32.vbs
ping 1.1.1.1 -n 1 -w 1000 > nul
del start32.vbs /s /q