This virus provides small little messages that your user can either choose to read or not.
If you want you can combine this virus with the shutdown virus, you can cause your friends to read a series of messages that eventually lead to shutdown.
A small preview video is shown below.
Now here are the steps to make your own virus like the one above...
- Right click on the Desktop » New » Text Document.
- Type what you want the document to be named.
- Open the document.
- Now Type The Following
@echo off
A:
cls
echo TYPE THE FIRST MESSAGE HERE
pause
echo TYPE THE SECOND MESSAGE HERE
pause
echo TYPE THE THIRD MESSAGE HERE
pause
Continue for amount of messages necessary. - Now it is time to save it, click File » Save As.
- Now type in *Name*.bat.
- Now click save.
- Now you should have your virus file.
- Double click it and watch your virus go!



Notes:
- You can have more than one
echoin betweenpauses. Eachechocreates a new line while eachpausecauses the window to sayPress any key to continue . . . - You can put a shutdown code in this virus by replacing any of the
echomessages with a shutdown code. An example is shown below. See Virus Post #1 for more details.@echo off
A:
cls
echo HELLO
pause
echo I aM gOiNg To ShUt DoWn YoUr CoMpUtEr!
pause
echo Do not press continue it will shut down your computer
pause
shutdown -s -t 60 -c "You should not have pressed continue, now shutting down."
pause
echo haha i shut down your computer?!?!?!...
pause The shutdown code is used in the video preview.

