Amazon

Thursday 14 July 2011

Cool Notepad Trickz


To whom that think notepad is very a small program to simply write and read or to do some similar things like that let me tell you that notepad is not just a small utility to do all those simple work instead its a great editor and a awesome Microsoft tool. With notepad you can do almost everything, you can create file of any extension, can read any file type in text format, many more. Using Notepad, I am going to share some really awesome hacks, you can also use these tricks to fool your friend.


So here the tricks begin,
Popup Unlimited Notepad.exe
This will pop-up unlimited notepads until the Computer Crashes. Copy the code in notepad and save it as ".vbs" extension.

@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top



Caps Lock Hack
This constantly turns caps lock on and off really fast continuously. Also save this in .vbs extension






Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop



Backspace Hack
This makes it so the backspace key is constantly being pressed. Save it in .vbs extension

MsgBox “Let’s go back a few steps”
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop


Make Keyboard Type "You Are A Fool!!!"
Hack keyboard to type "You Are A Fool!!!" continuously. Save it in .vbs extension

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You Are A Fool."
loop


Shutdown Your Computer
Convey a message and turn off the computer. Save it in .bat extension.

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


I hope you really like this hacks and will definitely use this hacks to fool your friends. You can also change the codes as per your choice.