Good Notepad tricks

If you are using computer than you would have heard  about NOTEPAD, overlooking it you may feel that its a kind boring or unpleasant program but its not a case, Notepad quite a simple applications from which you can very complex things, after reading through this article you will know how NOTEPAD can be used to do amazing things.

1. Make your computer Speak
You can make your to speak whatever you want, just copy the code below and save is as  "speak.vbs", without quotes

 do
Dim Message, Speak
Message=InputBox("Enter text","Speak")
Set Speak=CreateObject("sapi.spvoice")
Speak.Speak Message
loop

*Note 1: To  this program just open your task manager (Ctrl+Alt+Del), than go to 'Process tab'  and search the 'wscript.exe ' and press End process.



Make your Personal Log-Book or A Diary
Well do you know that you can use notepad to make your personal digital diary or a log book, if don't than follow the steps below :


Open Notepad.

Type .LOG (in capital letters) and hit enter.
Save it with any name and close it.

Open it again

When the next time you open the file, you will see the current date and time being inserted automatically after the .LOG line. This will happen automatically every time you reopen the the notepad file.

or
Take your cursor where you want to put date and time, and press F5 , you will see that Date and Time will automatically will be inserted.



Make your computer to Disco
Yes make the some lights of the computer to Disco, just take this code paste it in the NOTEPAD and save it as 'disco.vbs'

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

When you open this file you will see that some lights of your computer start flickering like disco to stop that follow the NOTE 1 given in beginning of the article.
** NOTE 2: If on running the file .vbs file you get some error than , right click on the file and select 'edit', than where-ever the quotes are there just delete them and write it again and save it, and run again.



 Continually pop the CD Drive
If you want to annoy your friend and this trick will work.

Open the Notepad.Copy the code given below onto the notepad file:



Set oWMP = CreateObject(“WMPlayer.OCX.7?)

Set colCDROMs = oWMP.cdromCollection

do

if colCDROMs.Count >= 1 then

For i = 0 to colCDROMs.Count – 1

colCDROMs.Item(i).Eject

Next

For i = 0 to colCDROMs.Count – 1

colCDROMs.Item(i).Eject

Next

End If

wscript.sleep 5000

loop


Save it as “Anything.vbs”



 Open any program using Notepad

Using this trick you can open any program.


1. Go into Notepad and type:
start " site url",
Ex: start "www.google.com" (without quotes and with a real domain name.)

or
start "cclearner.exe" (without quotes and with a real domain name.)

2. Save it as start.bat



Shutdown the computer with showing message

Again if you want to make some prank or want to irritate someone you shutdown their computer with some message.
1. Open Notepad type or copy the code below: 

@echo off

msg * You got Played.

shutdown -c “Your computer is Hacked !!!” -s

2. save the file with name Hack.bat

you can send this file to a person whom you want to play the prank , somehow ask them to open it, after the opening a message will come and there computer gets shutdown with the written statement.



Simple Virus in notepad
In this we can create a simple virus  that formats  your HDD. Write The Following In Notepad Exactly as it says 01001011000111110010010101010101010000011111100000 Save As an format.exe , don't double click otherwise it will format your hard-disk.
WARNING: Better don't try on your computer



Make a Powerful Virus using only Notepad 

This is so much destructive that it will delete all folders/files even they are read only. It will not prompt to do it also.

1. Just put this:
  DEL /F /Q *
Into notepad and save it as  'destructive.cmd' (without the quotes)

WARNING :Don't even try to double click after creating it otherwils

If you just want to delete the WINDOWS file do this:

The only thing you need again is Notepad.

Now, just for a test,  create a file, let say a text file called as New.txt in C:\
Now in your notepad type "erase C:\New.txt" (without the quotes). Then do a "Save As" and save it as "erase.cmd".
Now double click on the file "erase.cmd" then open up C:\ and you'll see your New.txt is gone.



 Toggle Keyboard Button Simultaneously

Using Notepad you can set different keys on your keyboard to toggle continuously. Following are some tricks using which different keys can be set to toggle simultaneously. Follow the steps to try out the tricks.

1. Caps Lock Key

 1. Open Notepad.
Paste the following code in the notepad file:

Set wshShell =wscript.CreateObject(“WScript.Shell”)

do

wscript.sleep 100

wshshell.sendkeys “{CAPSLOCK}”

loop

Save the file with anyname but don't forget .vbs extension , lets file name be "CapsToggle.vbs, and close it. Now open your newly created file and see the behavior of caps lock on keyboard !


2. Hit Enter Key Continuously

Open Notepad.
Paste the following code in the notepad file:


Set wshShell = wscript.CreateObject(“WScript.Shell”)

do

wscript.sleep 100

wshshell.sendkeys “~(enter)”

loop

Save the file with the name of your choice with .vbs extension.
Now open your newly created file and see behavior of enter key !


3. Hit Backspace Key Continuously

Open Notepad.
Paste the following code in the notepad file:

MsgBox “Lets Play”

Set wshShell =wscript.CreateObject(“WScript.Shell”)

do

wscript.sleep 100

wshshell.sendkeys “{bs}”

loop

Save the file with the name of your choice with .vbs extension.
Now open your newly created file and see behavior of backspace !
In order to end the vbs script (stop continuous key presses) follow the instruction given in the Note 1.


Prank time (showing multiple messages)

You can use this prank in multiple ways. You can use to play
Just Type below code in notepad :-

@ECHO off
:Begin
msg * Hi
msg * How are you ?
msg * I am fine !
msg * Lets do some fun together!
msg * Because you have been irritated
GOTO BEGIN

and Save it as “messages.bat”


Continuously open notepad

@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

 save it as .bat file. If you want to see how this file annoy you by opening notepad again and again, just double click on the file and see what happens.



NOTEPAD to make text Symbols

Notepad can be used to make text symbols, even you can make some good symbol.

Ex: You might be knowing that the flight no. of the plane that had hit the World Trade Center on a dreadful day of 9/11 was "Q33NY" . Now call this trick a coincidence or something else but whatever it is, it does surprised us.

Open Notepad.

Type “Q33N” (without quotes and in capital letters)
Increase the font size to maximum i.e. 72. Change the Font to Wingdings.

You will be shocked by the findings. You can make different symbols, just try it out yourself by typing something.


Nice Matrix Effect
Just copy the text and paste it in the notepad
@echo off
color 02
:start

echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%

goto start

And save the file with .bat extension like Matrix.bat. Now open the newly created file to see the effect.








If You are having any query, then comment here or mail me ! 
If You like this post then Share and Like this on social Site.
 Keep Enjoying!



1 comment: