Notepad, the text editor that comes bundled in Windows is an excellent
tool for text editing. But that is not the only thing for which notepad
is famous. It is also famous for its tricks and hacks. Here is a roundup
of some of the best and coolest tricks that you can try using Notepad.
Inspired by the movie Matrix, this falling code trick is extremely
popular. Just follow the steps and see the amazing matrix effect happen in your DOS window:
@echo off
@ECHO off
Save the file with .bat extension like "Error.bat"
:top
START c:\windows\notepad.exe
GOTO top
Save the file with any name nut with .bat extension and close it.
Now open the file and see how it annoys you by opening notepad again and again.
msg=InputBox("Enter your text for conversion–www.techvorm.com",
Set sapi=CreateObject("sapi.spvoice") sapi.Speak msg
Save this file with any name with .vbs as extension. For eg. Text-To-Audio.vbs
Matrix Falling Code Effect - Notepad CMD (.BAT) Tricks
Inspired by the movie Matrix, this falling code trick is extremely
popular. Just follow the steps and see the amazing matrix effect happen in your DOS window:
- Open Notepad.
- Copy the below mentioned text in your notepad file:
- Save the file with .bat extension like Matrix.bat
@echo off
color 02
:start
echo%random%%random%%random%%random%%random%%random%%random%%random%
goto start
Constantly Repeat Messages
Using this notepad trick you can annoy anyone and can actually force them to REBOOT the computer. This notepad trick will create an infinite cycle of a message in the computer. Follow the steps to know more:
@ECHO off
:Begin
msg * Hi
msg * Are you having fun?
msg * I am!
msg * Lets have fun together!
msg * Because you have been o-w-n-e-d
GOTO BEGIN
Save the file with any file name but with .bat as extension and close it. For Ex. "anything.bat"
Shut-down The Computer After Conveying Any Message
This one is kind of an annoying trick and if used unknowingly can certainly cause problems. What this trick does is, after conveying a (any) message it shuts down the computer without any confirmation. In order to create the Shutdown file, follow the below mentioned steps:
- Open Notepad.
- Paste the following code in it:
Save the file with .bat extension like "Error.bat"
Open Notepad Continuously
- Open Notepad.
- Paste the following code in your notepad file:
:top
START c:\windows\notepad.exe
GOTO top
Save the file with any name nut with .bat extension and close it.
Now open the file and see how it annoys you by opening notepad again and again.
Make A Personal Log-Book
Follow the below mentioned steps to make one for yourself !
- Open Notepad.
- Type .LOG (in capital letters) and hit enter.
- Save it with any name and close it.
- Open it again.
Notepad Trick - Text to Audio
- Open Notepad file on your Windows PC.
- Copy and paste the below mentioned code :
msg=InputBox("Enter your text for conversion–www.techvorm.com",
"TechVorm Text-To-Audio
Converter")
Set sapi=CreateObject("sapi.spvoice") sapi.Speak msg
Save this file with any name with .vbs as extension. For eg. Text-To-Audio.vbs
0 comments:
Post a Comment