Subscribe Now

Tuesday, May 20, 2008

Virus Post #3

After a lot of work in the whole fun virus post tricks we have decided to continue the saga. Now ith a fun new post that is sure to piss off your friends and family lets continue.

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.

video


Now here are the steps to make your own virus like the one above...



  1. Right click on the Desktop » New » Text Document.


  2. Type what you want the document to be named.


  3. Open the document.


  4. 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.


  5. Now it is time to save it, click File » Save As.


  6. Now type in *Name*.bat.


  7. Now click save.


  8. Now you should have your virus file.


  9. Double click it and watch your virus go!


Notes:

  1. You can have more than one echo in between pauses. Each echo creates a new line while each pause causes the window to say Press any key to continue . . .
  2. You can put a shutdown code in this virus by replacing any of the echo messages 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
  3. The shutdown code is used in the video preview.

Subscribe Now