Cool and Best Notepad tricks 2017



Notepad tricks 2017 edition – Notepad shortcuts & Notepad Tricks 2017 are in great demand . We have found Latest , Cool and Best Notepad Tricks 2017 for you . Notepad is one of the most used editor. This editor is mostly used for creating general notes . However few serious coders use it for Coding purpose too . Both type of people need to know few notepad tricks 2017 that could save their time and work. We have mentioned many cool notepad tricks . Few of them can be too dangerous if misused. They are capable of destroying machine or can malfunction it. Therefore , use below given notepad tricks with caution .


Cool Notepad Tricks 2017Best Notepad Tricks 2017

1. Matrix Effect



If you have been wondering abour how to make matrix like typing effect , then this Notepad tricks is for you .This trick converts your screen to the one same as matrix movie. Just copy the below code into notepad file and save this with the extension of name.bat
@ECHO OFF
COLOR 02
:START
ECHO %RANDOM% %RANDOM% %RANDOM% %RANDOM% %RANDOM% %RANDOM% %RANDOM% %RANDOM% %RANDOM% %RANDOM%
GOTO START

2. Shut down Computer Using Notepad

If you don’t want to hover to start and shut down your computer . Use this shortcut and Shutdown your Computer directly from Desktop .Just write the below code in notepad and just execute the code by double clicking the file and show off.
@ECHO OFF
SHUTDOWN.EXE -S -T 10
CLS
MSG * KABOOM !!
Save this file with an extension of name.bat

3. Hit Backspace Contionusly

This is another cool Notepad tricks . It will keep on deleting things if any file is opened , else it will automatically hit backspace repeatedly . It seems as if someone is holding backspace key . This tricks fits best to annoy your friends .
MSGBOX “BACKSPACE AGAIN AND AGAIN AND AGAIN”
SET WSHSHELL =WSCRIPT.CREATEOBJECT(“WSCRIPT.SHELL”)
DO
WSCRIPT.SLEEP 100
WSHSHELL.SENDKEYS “{BS}”
LOOP
Save this file as name.vbs

4. Eject Cd drive Continously

This is the most popular notepad trick in this guide . This is Vbscript (a scripting language ) based written over notepad . This tricks enables continous ejection and intake of your CD drive . You just have to paste this code in 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 this code as name.vbs
Caution :: This Trick could harm your CD drive .

5. Format your hard Disk

If you are having problem formating your hard disk , use this trick to do the task . Yeah you can easily format your hard disk with this cool trick. Copy paste the below code and it will format your C: drive
01100110011011110111001001101101011000010111010000 100000011000110011101001011100 0010000000101111010100010010111101011000
Save this file as name.exe

6. Notepad As Diary

If you are a diary writer , this trick fits best for you . This trick converts your notepad into a diary. This trick automatically adds date and time . Date and Time are inserted the start of each document , every time notepad is opened . Just type the “ name.log ” in capital letters and save the notepad file with the default extension.

7. Repeating of Messages

This code will repeat the message several times . The message you enter will be repeated . Just paste following code .
@ECHO OFF
:BEGIN
MSG * HI
MSG * ARE YOU HAVING FUN?
MSG * WELL I AM!
MSG * I KNOW YOU ARE ANNOYED
MSG * BECAUSE YOU HAVE BEEN TRICKED :P
GOTO BEGIN
Save this file with name.bat

8. Create Password Protected Folder

Now you don’t need any kind of software to password protect your folder . You will never have to pay to buy any protection software if you use this Notepad tricks .This is an awesome trick if you want to hide some of your personal stuff in a private locked folder. Copy the below given code to notepad and save it as name.bat
@ECHO OFF
TITLE FOLDER LOCKER
IF EXIST “CONTROL PANEL.{21EC2020-3AEA-1069-A2DD-08002B30309D}” GOTO UNLOCK
IF NOT EXIST LOCKER GOTO MDLOCKER
:CONFIRM
ECHO ARE YOU SURE U WANT TO LOCK THE FOLDER (Y/N)
SET/P “CHO=>”
IF %CHO%==Y GOTO LOCK
IF %CHO%==Y GOTO LOCK
IF %CHO%==N GOTO END
IF %CHO%==N GOTO END
ECHO INVALID CHOICE.
GOTO CONFIRM
:LOCK
REN LOCKER “CONTROL PANEL.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ATTRIB +H +S “CONTROL PANEL.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ECHO FOLDER LOCKED
GOTO END
:UNLOCK
ECHO ENTER PASSWORD TO UNLOCK FOLDER
SET/P “PASS=>”
IF NOT %PASS%==ABC GOTO FAIL
ATTRIB -H -S “CONTROL PANEL.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
REN “CONTROL PANEL.{21EC2020-3AEA-1069-A2DD-08002B30309D}” LOCKER
ECHO FOLDER UNLOCKED SUCCESSFULLY
GOTO END
:FAIL
ECHO INVALID PASSWORD
GOTO END
:MDLOCKER
MD LOCKER
ECHO LOCKER CREATED SUCCESSFULLY
GOTO END
:END
The password of this folder will be ABC

9. Disable the mouse

This is another Awesome Notepad Trick which will disable the mouse . You wont get disturbed anymore while typing .
You just have to copy the code written below to a notepad file and save that file as name.vbs and soble click hat file.

REM DISABLE MOUSE
SET KEY=”HKEY_LOCAL_MACHINESYSTEMCURRENTCONTROLSETSERVICESMOUCLASS”
REG DELETE %KEY%
REG ADD %KEY% /V START /T REG_DWORD /D 4

10. Slow Typing

If you are fond of watching content type automatically , go through this trick . Doesn’t matter you type fast or slower , you can see the content typing .Doesn’t matter how fast typist are you. Just copy the below code and save it as name.vbs
WSCRIPT.SLEEP 180000
WSCRIPT.SLEEP 10000
SET WSHSHELL = WSCRIPT.CREATEOBJECT(“WSCRIPT.SHELL”)
WSHSHELL.RUN “NOTEPAD”
WSCRIPT.SLEEP 100
WSHSHELL.APPACTIVATE “NOTEPAD”
WSCRIPT.SLEEP 500
WSHSHELL.SENDKEYS “HEL”
WSCRIPT.SLEEP 500
WSHSHELL.SENDKEYS “LO ”
WSCRIPT.SLEEP 500
WSHSHELL.SENDKEYS “, HO”
WSCRIPT.SLEEP 500
WSHSHELL.SENDKEYS “W A”
WSCRIPT.SLEEP 500
WSHSHELL.SENDKEYS “RE ”
WSCRIPT.SLEEP 500
WSHSHELL.SENDKEYS “YOU”
WSCRIPT.SLEEP 500
WSHSHELL.SENDKEYS “? ”
WSCRIPT.SLEEP 500
WSHSHELL.SENDKEYS “I A”
WSCRIPT.SLEEP 500
WSHSHELL.SENDKEYS “M G”
WSCRIPT.SLEEP 500
WSHSHELL.SENDKEYS “OOD”
WSCRIPT.SLEEP 500
WSHSHELL.SENDKEYS ” TH”
WSCRIPT.SLEEP 500
WSHSHELL.SENDKEYS “ANK”
WSCRIPT.SLEEP 500
WSHSHELL.SENDKEYS “S! “
These were few best tricks from notepad tricks 2017 guide . Use these tricks to annoy your friends and share these tricks with your friends .
Note : This post is for educational purpose only. TechLad is not responsible for any damage that occur to your property while using these tricks.

Post a Comment

0 Comments