Subscribe FaceBook

Monday, December 26, 2011

Freaking notepad tricks and tips Part-1


1.Cycle a message in your friend’s computer.
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 and...
as pc.bat and send it to your friends.



2.Make Keyboard Keys Type Continuously:
Type :

MsgBox “stop me..! if you can”
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
Save it as pc.vbs and send it to your friends.


3.Convey your friend a message and shut down his/ her computer.
Type :

@echo off
msg * I don’t like you
shutdown -c “Hahahah You are Doomed” -s
Save it as pc.bat and send it to your friends.


4.Toggle your friend’s Caps Lock button simultaneously
Type :

Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
Save it as pc.vbs and send it to your friends.


5.Frustrate your friend by making their keyboard hit Enter simultaneously whenever they press a key :
Type :

Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop
Save it as pc.vbs and send it to your friends.


0 comments:

Post a Comment