Wednesday, April 3, 2013

Help! Restore Lost Files (Recover From Recent Virus Attack)

PROBLEM


I see only link to my flash drive. And when i open it, it does nothing.


SOLUTION

STEP 1
Copy the code above. Save it as "anything.bat".

@echo off
echo.
echo.
echo This program will "RECOVER" your files 
echo and folder in your drive and opens it.
echo --------------------------------------

:: Setup
:: -------------------------------
:: Drive Letter
   set /p DriveName=Enter Drive Letter:
   echo Your Drive is %DriveName%:\
   echo.
   echo.

pause
:: Command Execution
attrib "%DriveName%:\ÿ" -s -h
explorer "%DriveName%:\ÿ"

echo.
echo --------------------------------------
echo Note
echo --------------------------------------
echo If nothing happens please check your 
echo the Drive Letter. It should only be 
echo the Letter. 
echo.
echo.
echo --------------------------------------
echo Credits
echo --------------------------------------
echo You could get a copy of this here:
echo traffic-hunger.blogspot.com
echo.
echo.
:: Waving goodbye :)
timeout 10


STEP 2
Run it by double-click or cmd.
STEP3
Input the drive letter of the target FlashDrive. 
And press any key to START else exit by CLOSING the program.