Create Funny Harmless Viruses (Notepad Pranks - Part 1)

Make Funny Viruses

Notepad is a text editor comes with Windows. It is an excellent tool for text editing. It can open any type of file. Apart from text editing, it is also famous for its tips and tricks. I have gathered some really awesome tricks while surfing on net. 

Today I will tell you how you can use Notepad to make some really funny programs/viruses to fool your friends. You can use these tricks without any fear because these are 100% harmless.

Matrix Falling Code Effect

Inspired by the movie "Matrix", this trick is very popular on the social media. Copy and paste the given code in the Notepad and save the file with .bat extension. For Example, Matrix.bat
@echo off
color 02
:tricks
echo %random%%random%%random%%random%%random%%random%%random%%random%
goto tricks
Now run the file and you will see the "Matrix Falling Code" effect.

Shutdown PC with a Message

Using this trick, you can fool your friend by turning off his/her PC with a message. To do this, open the notepad and type one of the following code:
@echo off
echo "I am hacking your PC"
shutdown -s -f -t 60 -c "Now all your data has been deleted. Your Computer will shutdown soon" 
OR 
@echo off
msg * I don't like you
shutdown -c "Error! You are too silly!" -s

Save the file with .bat extension. Now send the file to your friend. When he opens it, a message will appear and the PC will shutdown after 60s.

Toggle Caps Lock Button Simultaneously

Open notepad and type the following code:
Set wshShell =wscript.CreateObject("WScript.Shell"wink
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop
Save it as "Name.VBS" and send it to your friend

Hack Your Friend's Keyboard

Using this trick, you can hack your friend's keyboard to make him type "You are a fool" simultaneously. Just copy this code in Notepad:
Set wshShell = wscript.CreateObject("WScript.Shell"wink
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop
Save the file with .VBS extension and send it to your friend. 

Open the Note Continually

This trick will make your computer to open the Notepad continually. Type this code in the Notepad:
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
Save the file with .VBS extension.


Note: Again I am telling you that these tricks are safe and will not harm your PC in any way so just feel free to use them. I will post more tricks in its second part soon. 

Comments

Post a Comment

Popular Posts