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:
- 5 Tips And Tricks To Boost Your Windows 7 PC Speed
- Create Funny Things And Harmless Viruses With Notepad - New !!
- Facebook Pages New Timeline: A Streamlined Look for Pages
- 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
0 comments:
Post a Comment