Notepad Tricks

Cool & Best Notepad Tricks 2023

Notepad Tricks 2023 Edition: You might get amazed at when something performs extraordinary things. In the same way, you can do lots of things with a computer which you never imagined. Like many people just use Notepad for typing but apart from typing, you can do much more with this of the most used editor present in Microsoft Windows. This editor is used by users for creating general notes. Developers use notepad for writing code for various software. But apart from these functions there are may cool notepad tricks that are present there. Some of these tricks are even dangerous and can destroy the machine or can malfunction it. Here in this post we have summoned some of the coolest notepad tricks. Use these Notepad Tricks with caution.

Best Notepad Tricks 2023

Notepad Tricks
Notepad Tricks

#1 Shut Down Computer Using Notepad

This is one of the coolest tricks that is present. With this trick, one can easily shut down the computer without even clicking shut down button. 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

#2 Matrix Effect

This is one of the coolest tricks. If you are the fan of the matrix then you must use this trick. 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 {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}random{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863} {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}random{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863} {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}random{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863} {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}random{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863} {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}random{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863} {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}random{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863} {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}random{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863} {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}random{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863} {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}random{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863} {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}random{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}
goto start

#3 Notepad as Diary

This trick converts your notepad into a diary. This trick is best for those who want notepad to automatically enter the date and time. This will happen every time you open the notepad. Just type the “name.log” in capital letters and save the notepad file with the default extension.

#4 Eject CD drive continuously

This trick is one of the most popular tricks that are available. This trick is a vb based script that is written in notepad. With this trick, your CD drive will continuously come out and in. Just write this code in 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 this code as name.vbs

#5 Slow Typing

This is again a cool trick This trick will cause the text to be typed slowly. 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! “

#6 Hit Backspace continuously

This is a cool trick which will automatically hit backspace again and again as if someone is holding the key. This trick is very good if you want 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

#7 Disable the mouse

This is again another awesome funny trick which will disable the mouse. 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 {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}key{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}
reg add {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}key{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863} /v Start /t REG_DWORD /d 4

#8 Create Password protected Folder

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 {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}cho{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}==Y goto LOCK
if {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}cho{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}==y goto LOCK
if {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}cho{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}==n goto END
if {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}cho{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}==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 {6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}pass{6692d0899169d8c8cfbd1f5df2086582c3301738f99f3382fe6008dc9bc3c863}==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 Repeating of messages

This code will repeat the entered message. Just paste the 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

#10 Format your Hard disk

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

So guys these were some of the tricks from notepad tricks  list. Do share these with your friends if you like these tricks

Note : This post is for educational purpose only. TechUncle is not responsible for any damage that occur to your property while using these tricks.

So, guys this was all about the best notepad tricks 2023 edition. I hope you enjoyed the article if you know some other trick of notepad or facing any problem while using these tricks then just comment it below. Don’t forget to share this article with your beloved ones.

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *