Saturday, April 12, 2014

Create Funny Things And Harmless Viruses With Notepad

Posted by Muji


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 below 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

Recommended Articles For You: 
  1. 5 Tips And Tricks To Boost Your Windows 7 PC Speed
  2. Create Funny Things And Harmless Viruses With Notepad - New !!
  3. Facebook Pages New Timeline: A Streamlined Look for Pages
  4. First 10 Users of Facebook

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"

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

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

Open the Notepad Continuously:

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

Author's Note: If you liked my article please do share with your friends. Also please subscribe to the news letter for more awesome tricks and tips.

0 comments:

Post a Comment