Sunday 3 November 2013

CREATING FUNNY VIRUSES USING NOTEPAD








These are cool notepad pranks witten in Microsoft Visual Basic, not some scary deadly virus, grin

 create any of these files and try them out on your pc and see what i'm saying, or send it to your friends via e-mail. Doing this is fun, hehehe, Re-starting your computer cancels the effect unless you add the start-up code which I wont post here.

1. Convey your friend a lil' message and shut down his / her computer:
Type :

@echo off
msg * I don't like you
shutdown -c "Error! You are too silly!" -s


Save it as "Anything.BAT" in All Files and send it.


2. Toggle your friend's Caps Lock button simultaneously:
Type :

Set wshShell =wscript.CreateObject("WScript.Shell&quot")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop


Save it as "Anything.VBS" and send it.