That is basically the point of this script, let the doubters/newbs have a go at it.
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
@echo off
if "%1"=="" goto usage
if "%2"=="" goto usage
echo Now entering the brute force loop.
echo Press CTRL+C at any time to cancel the loop.
echo The loop will only stop on it's own when/if it successfuly brute forces the desired public address.
set count=0
:loop
if exist Brute.txt del Brute.txt
vanitygen64.exe -q -o Brute.txt %1
FOR /F "tokens=1 delims=" %%A in ('FIND /C "%2" Brute.txt') do SET tmp=%%A
set tmp=%tmp:~-1%
if "%tmp%" == "1" goto end1
set /A count+=1
echo You have now failed to brute force %2
echo %count% times!
echo Press CTRL+C at any time to cancel your pointless attempt!
goto loop
:end1
rename Brute.txt %2.txt
echo Congratulations, You brute forced %2?!?!?!?!?!?!?!?!?
goto end2
:usage
echo Brute.bat Pattern FullPublicAddress
echo Pattern should be the first 5ish characters of the public address.
echo FullPublicAddress should be the fully public bitcoin address
echo which you want to attempt to brute force.
:end2