Notepad might seem like a simple text editor, but it can be used to create some fascinating tools and scripts. With just a little creativity and knowledge of scripting languages like Batch, HTML, or VBS, you can turn Notepad into a tool-making powerhouse. Here are 12 cool tools you can create using Notepad.
1. Shutdown Timer
Use Notepad to create a tool that automatically shuts down your computer after a set time.
@echo off
shutdown -s -t 60
Save it as ShutdownTimer.bat.
2. Folder Locker
Protect your files by creating a folder locker tool.
@echo off
cls
echo Enter your password:
set /p pass=
if NOT %pass%==mypassword goto fail
attrib +h +s LockedFolder
exit
:fail
echo Incorrect password!
pause
Save it as FolderLocker.bat and replace "mypassword" with your password.
3. Matrix Effect
Create a cool "Matrix" style screen effect.
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random%
goto start
Save it as Matrix.bat and run it.
4. Fake Virus
Simulate a harmless "virus" prank for fun.
@echo off
msg * Warning! Your system is infected.
msg * Deleting files...
:start
start notepad
goto start
Save it as FakeVirus.bat.
5. System Info Viewer
View your system information in a single click.
@echo off
systeminfo
pause
Save it as SystemInfo.bat.
6. Internet Speed Test
Create a tool to test your internet speed using ping commands.
@echo off
ping google.com
pause
Save it as SpeedTest.bat.
7. Auto Website Opener
Open your favorite websites automatically with this script.
@echo off
start https://www.google.com
start https://www.youtube.com
Save it as AutoOpen.bat.
8. Text-to-Speech
Make your computer speak using this script.
Dim message, sapi
message=InputBox("Enter the text you want to hear:","Text-to-Speech")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message
Save it as Speak.vbs.
9. Wi-Fi Password Retriever
Retrieve saved Wi-Fi passwords with this tool.
@echo off
netsh wlan show profiles
pause
Save it as WiFiPasswords.bat.
10. Keyboard LED Blinker
Make your keyboard LEDs blink with this fun script.
Set wshShell = WScript.CreateObject("WScript.Shell")
Do
wshShell.SendKeys "{CAPSLOCK}"
WScript.Sleep 100
Loop
Save it as Blink.vbs.
11. Quick Notes
Open a Notepad window automatically to jot down notes.
@echo off
notepad
Save it as QuickNote.bat.
12. File Renamer
Rename files in a folder with this script.
@echo off
ren *.txt *.bak
Save it as FileRenamer.bat and place it in the folder with files to rename.
Conclusion
Notepad isn’t just for writing—it’s a powerful tool for creating scripts and automating tasks. These 12 tools are just the beginning of what you can achieve. Experiment, learn, and enjoy the magic of scripting!

Join the conversation