Friday, January 1, 2016

AddMeFast Bot - Increase Your Likes, Followers, Circles etc.


What Is AddMeFast?
AddMeFast is a network that will help you grow your social presence. We allow you to look and choose who you want to like/subscribe/follow/view and skip those who you are not interested in.

AddMeFast helps you to increase :-

  • Facebook Likes
  • Facebook Share
  • Facebook Followers
  • Facebook Post Likes
  • Facebook Post Share
  • Google+ Circles
  • Google+ Post Share
  • YouTube Subscribe
  • YouTube Video Likes
  • YouTube Video Favorites
  • YouTube Views
  • Twitter Followers
  • Twitter Tweets
  • Twitter reTweets
  • Twitter Favorites
  • Ask.fm Likes
  • VK Page Followers
  • VK Group Join
  • MySpace Friends
  • Instagram Followers
  • Instagram Photo Likes
  • Pinterest Followers
  • Pinterest rePins
  • Pinterest Likes
  • Reverbnation Fans
  • SoundCloud Followers
  • SoundCloud Music Listening
  • StumbleUpon Followers
  • WebSite Hits (autosurf).

AddMeFast Bot
To increase your likes and followers you need to get points in your AddMeFast Account. In that case AddMeFast Bot will help. It will increase your points within few minutes which you can use to get followers and likes.





AddMeFast Account

AddMeFast Bot

Switch Off The Thumbs.db Image Cache File in Windows

Thumbs.db is an image cache which makes thumbnail viewing faster. The file is automatically created in Windows Vista, 7 and 8 whenever images are encountered in a folder. It’s usually hidden but can appear, disappear and is often impossible to delete.
Fortunately, there’s an easy way to prevent further Thumbs.db hassle:
  • Ensure you’re logged in using an administrator account.
  • Hit Win+R, type gpedit.msc in the Run window and click OK. The Local Group Policy Editor will be launched.
  • Navigate through the tree to User Configuration > Administrative Templates > Windows Components > then either Windows Explorer (Windows Vista/7) or File Explorer (Windows 8).


  • In the right-hand pane, double-click “Turn off the caching of thumbnails in hidden thumbs.db files”.
  • Select Enabled (don’t make my mistake of choosing “Disabled” — you’re enabling the switching off of Thumbs.db. Not particularly intuitive, Microsoft!)



OK your way out and it’s job done — you’ll never be troubled by Thumbs.db files ever again!

Delete System Volume Information Folder From Pendrives



Copy the code below and save it as DelSysFiles.cmd, then run it.



@echo off

cls
color 1f
echo.
echo DELETE SYSTEM FILES AND FOLDERS FROM A DRIVE
echo ============================================
echo.
echo THIS COMMAND: %0 %1
echo.
echo USAGE: %0 (DRIVELETTER:)
echo.
if /i "%~d1"=="C:" echo BAD PARAMETER - DRIVE C: NOT ALLOWED! & pause & goto :eof
if not exist %~dpnx1nul echo Please use a DRIVE VOLUME LETTER not a file! & pause & goto :eof
if not exist "%~d1\System Volume Information"  echo "System Volume information" does not exist on %~d1 & pause
echo.
echo Before running this, install TakeOwnership .reg fragment and Right-click - TakeOwnership on the file/folder
echo.
echo 
echo.
echo.
echo STATUS
echo ======
call :show %1
echo.
echo.
set ask=
set /p ask=OK to delete these root system files and folders from %~d1 ? (Y/N) : 
if not "%ask%"=="y" goto :eof

echo.
echo Resetting hidden\read-only\system attributes on all files - please wait...
if exist %~1\nul attrib -h -r -s %~d1\*.*
rmdir %~d1\"System Volume information" /S /Q 2> nul && echo dummy > %~d1\"System Volume information"

set FLD=%~d1\$RECYCLE.BIN
if exist %FLD% rmdir %FLD% /S /Q 
set FL=%~d1\hiberfil.sys
if exist %FL% del %FL%
set FL=%~d1\swapfile.sys
if exist %FL% del %FL%
set FL=%~d1\pagefile.sys
if exist %FL% del %FL%
set FL=%~d1\RECYCLER
if exist %FL% del %FL%

:end

echo.
echo RESULT
echo ======
call :show %1
echo.
if "%SVI%_%SVIFILE%"=="1_" color cf
if "%SVI%_%SVIFILE%"=="1_" echo WARNING: SYSTEM VOLUME INFORMATION folder could not be deleted!
if "%SVI%_%SVIFILE%"=="1_" echo Please Right-Click on the folder and run "Take Ownership" and try again!
echo.
echo Finished!

pause

goto :eof

:show
set SVI=
set SVIFILE=
if exist %~d1\hiberfil.sys echo HIBERFIL.SYS EXISTS!
if exist %~d1\swapfile.sys echo SWAPFILE.SYS EXISTS!
if exist %~d1\pagefile.sys echo PAGEFILE.SYS EXISTS!
if exist %~d1\RECYCLER     echo RECYCLER folder EXISTS!
if exist %~d1\$RECYCLE.BIN echo $RECYCLE.BIN folder EXISTS!
if exist "%~d1\System Volume Information" set SVI=1
if "%SVI%"=="1" find "dummy" "%~d1\System Volume Information" > nul 2> nul && set SVIFILE=YES
if "%SVI%_%SVIFILE%"=="1_YES" echo dummy SYSTEM VOLUME INFORMATION file EXISTS!
if "%SVI%_%SVIFILE%"=="1_" echo SYSTEM VOLUME INFORMATION folder EXISTS!
goto :eof
@echo off

color 1f
echo.
echo DELETE SYSTEM FILES AND FOLDERS FROM A DRIVE
echo ============================================
echo.
echo THIS COMMAND: %0 %1
echo.
echo USAGE: %0 (DRIVELETTER:)
echo.
if /i "%~d1"=="C:" echo BAD PARAMETER - DRIVE C: NOT ALLOWED! & pause & goto :eof
if not exist %~dpnx1nul echo Please use a DRIVE VOLUME LETTER not a file! & pause & goto :eof
if not exist "%~d1\System Volume Information"  echo "System Volume information" does not exist on %~d1 & pause
echo.
echo Before running this, install TakeOwnership .reg fragment and Right-click - TakeOwnership on the file/folder
echo.
echo 
echo.
echo.
echo STATUS
echo ======
call :show %1
echo.
echo.
set ask=
set /p ask=OK to delete these root system files and folders from %~d1 ? (Y/N) : 
if not "%ask%"=="y" goto :eof

echo.
echo Resetting hidden\read-only\system attributes on all files - please wait...
if exist %~1\nul attrib -h -r -s %~d1\*.*
rmdir %~d1\"System Volume information" /S /Q 2> nul && echo dummy > %~d1\"System Volume information"

set FLD=%~d1\$RECYCLE.BIN
if exist %FLD% rmdir %FLD% /S /Q 
set FL=%~d1\hiberfil.sys
if exist %FL% del %FL%
set FL=%~d1\swapfile.sys
if exist %FL% del %FL%
set FL=%~d1\pagefile.sys
if exist %FL% del %FL%
set FL=%~d1\RECYCLER
if exist %FL% del %FL%

:end

echo.
echo RESULT
echo ======
call :show %1
echo.
if "%SVI%_%SVIFILE%"=="1_" color cf
if "%SVI%_%SVIFILE%"=="1_" echo WARNING: SYSTEM VOLUME INFORMATION folder could not be deleted!
if "%SVI%_%SVIFILE%"=="1_" echo Please Right-Click on the folder and run "Take Ownership" and try again!
echo.
echo Finished!

pause

goto :eof

:show
set SVI=
set SVIFILE=
if exist %~d1\hiberfil.sys echo HIBERFIL.SYS EXISTS!
if exist %~d1\swapfile.sys echo SWAPFILE.SYS EXISTS!
if exist %~d1\pagefile.sys echo PAGEFILE.SYS EXISTS!
if exist %~d1\RECYCLER     echo RECYCLER folder EXISTS!
if exist %~d1\$RECYCLE.BIN echo $RECYCLE.BIN folder EXISTS!
if exist "%~d1\System Volume Information" set SVI=1
if "%SVI%"=="1" find "dummy" "%~d1\System Volume Information" > nul 2> nul && set SVIFILE=YES
if "%SVI%_%SVIFILE%"=="1_YES" echo dummy SYSTEM VOLUME INFORMATION file EXISTS!
if "%SVI%_%SVIFILE%"=="1_" echo SYSTEM VOLUME INFORMATION folder EXISTS!
goto :eof

DragonBall Z: Shin Budokai

The Budokai series plays like a typical 3-D fighting game. As well as including the regular punch and kick buttons, there is the ability to shoot Ki blasts, which can also be used in specific special moves. The special moves are mainly taken from individual characters own special moves from the show; including, but not limited to, Goku's Kamehameha, Vegeta's Galick Gun and Frieza's Death Beam. Although these mechanics have stuck with the series, other ideas such as the "Hyper Mode" the ability to move at incredible speedsfly freely, and "Beam Struggles" between two character's beam attacks. were later replaced in favour of other techniques.


Key Features

  • High-speed wireless multiplayer battles featuring the universe's strongest fighters
  • 18 playable characters, including prize fighter Pikkon
  • Revamped version of the acclaimed Saiyan Overdrive fighting system
  • In-game transformations to more powerful forms
  • All-new stage based on Fusion Reborn
  • Seven game modes, including a compelling story mode: Dragon Road