Hey friends welcome back to day i am going to shere a few notepad tricks.They are really
cool and crazy one's.So please atleast three or foure times use them on your PC.
1)UNLIMITED NOTEPAD WINDOWS TRICK!!
This will pop up endless notepad until the computer freezes and crashes.copy the
below code in notepad and save as ".vbs" extension.
code:
@ECHO off
:top
START%systemRoot%\system32\notepad.exe
GOTO top
CAPS LOCK CRAZY TRICK
2)This constantly turns caps lock on and off really fast continuously.
CODE:-
set wshshell=wscript.CreateObject("WScript.shell")
do
wscript.sleep100
wshshell.sendkeys "{CAPSLOCK}"
loop
UNLIMITED BACKSPACE HACK
This makes it so the backspace key is constantly being passed.
code:-
MsgBox "Let's go back a few steps"
Set wshShell=wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wsshell.sendkeys "{bs}"
loop
Hack your friends keyboard and make him type "You are a fool" Simultaneously:
code:
set wshShell=wscript.createObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "Yor are a fool".
loop