I made a small batch file that you can use to mine your own address a little easier.
Its for the 64 bit version of vanitygen.
Here is the code:
:start
echo -----Deluxe Vanity Address Miner-----
echo What would you like to VanityMine for?
set /p whatmine=
:invalid
cls
echo -----Deluxe Vanity Address Miner-----
echo Would you like it Case Sensetive [S] or Case Insensitive [I]
set /p case=
if "%case%"=="S" goto sensemine
if "%case%"=="s" goto sensemine
if "%case%"=="I" goto insnsmine
if "%case%"=="i" goto insnsmine
echo Invalid Input!
goto invalid
rem ------------------------------------------
rem -------Mining Program--------
:insnsmine
cls
echo.
echo -----Mining For %whatmine% [Case Insensitive] In Progress-----
echo.
vanitygen64.exe -i %whatmine%
goto endmine
:sensemine
cls
echo.
echo -----Mining For %whatmine% [Case Sensitive] In Progress-----
echo.
vanitygen64.exe -r %whatmine%
goto endmine
rem /\ Pointless but who cares?
:endmine
echo.
echo Quick! Copy your key Down! :)
pause>nul
echo.
set /p sure=Are your sure you you have copied your key down? [Y/n]
if "%sure%"=="Y" goto last
if "%sure%"=="y" goto last
goto endmine
:last
cls
echo Close this window unless you want to mine again.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo Batch file made by e1ghtSpace
echo Donations Welcome - 1M4mg2eH14m8xepzFabFftd7YDTAY1ZexT
pause>nul
cls
goto start
Make sure to put it in the same directory as vanitygen!