Monday, June 1, 2015

Notepad is the simplest text editor provided by Microsoft in every version of Windows. It is helpful when we want to create a quick note. The files created by Notepad are saved in .txt format which is supported by every text editor. So, the files created by Notepad are compatible to open, edit and modify everywhere.


MATRIX EFFECT

@echo off

title Matrix

:loop

:matrix

color 04

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

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

goto matrix

goto loop


then save it as Matrix.bat and enjoy!

or try this 

@echo off
:a
color 2
echo 1 1 1 0 1 0 0 0 1 1 1 1 0 0 0 1 1 0 0 1 0 0 0 1 1 0 1 0 1 0 0 0 1 1 1 1
ping localhost -n 1 > nul
echo 1 1 0 1 1 1 0 0 0 1 0 1 a f h 0 0 0 1 0 1 1 0 0 1 1 1 0 0 1 0 1 0 0 1 1 0
echo 1 0 0 1 1 0 9 8 1 2 0 1 9 9 2 1 1 1 0 0 1 0 1 1 1 0 1 1 0 1 0 0 0 1 0 1 1
ping localhost -n 1 > nul
echo 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 1 0 1 0 1 1 0 1 0 0 0 01 0 1 0 0 1 0
ping localhost -n 1 > nul
echo 1 0 1 1 1 0 1 1 0 9 1 1 2 1 1 0 9 1 0 5 7 7 8 7 8 1 3 2 1 2 1 2 3 2 1 3 4
ping localhost -n 1 > nul
echo 1 1 1 0 1 0 0 1 0 0 0 1 1 1 0 0 1 1 1 4 1 2 1 1 2 0 1 0 1 2 2 1 0 1 1 0 1
goto a




Create Diary on Notepad
This Notepad trick will allow you to create Notepad note in such a format that whenever you edit your note, it will get saved with date and timestamp automatically. To do this, follow these steps:

Open Notepad
Type .LOG in first line.
Save the file as Log.txt
Now, write something to the file and it will automatically get saved with edited date and time.



Create Fake Windows Errors With Notepad
This is another very cool Notepad trick that allows you to create Fake error messages. You can create Fake error message with any message. To do this, follow these steps:

Open Notepad
Type X=Msgbox(“Message Here”,0+16,”Title Here”)
Replace Message Here and Title Here with your Error Message and Error-Window Title respectively.
Save the file with error.vbs.
Now, click the file and you’ll get your custom-made Windows error message.




Make Computer To Speak Your Sentence

This Notepad trick will make computer to speak whatever you type in the provided text-box. To use this trick, follow these steps:

Open Notepad
Copy & paste this command:
Dim message, sapi
message=InputBox(“What do you want me to say?”,”Speak to Me”)
Set sapi=CreateObject(“sapi.spvoice”)
sapi.Speak message

 Save the file as speak.vbs.
Double-click the file and it will open a prompt. Enter the sentence you want your computer to speak
Click OK and Notepad will speak the sentence for you.



Force Shutdown Your Windows


This trick will let you force shutdown your Windows in a single-click. So, if you don’t want to waste three clicks
 (Start >> Turn Off Computer >> Turn Off), this trick will help you in that. To do this:

Open Notepad

@echo off in first line.
Paste msg * Shutdown computer in second line.
Paste shutdown -c “Sleep Tight” -s in third line
Save the file with .BAT extension. For example, shutdown.bat

Click on your file and it will automatically shutdown your Windows.



No comments:

Post a Comment