5 WORKING Notepad BAT Commands And Tricks
Whoever says that Notepad could also be an uneventful application is actually wrong. Probably you’ve seen Notepad on your Windows computer or device. Did you wonder about what it’s and what it does? This is often a really old application that has been present in Windows operating systems for many years. Although it keeps mostly an equivalent appearance altogether Windows versions, lately, in Windows 10, it’s received more attention from Microsoft.
Notepad may be a basic text editor that’s built into Windows. It’s excellent for writing relatively short text documents that you simply want to save lots of as plain text. However, that’s not all you’ll do with it. If you’ve got not used Notepad much, or ever, you’ll be surprised by how easy it’s to figure with.
In previous, I even have written articles on “Notepad code lists“, “Notepad .vbs tricks“. Through this article, I’m getting to show you what Notepad .bat commands is and the way to use it.
A Case Study:
I, myself is a software Engineer and I use Notepad in a regular manner for different kinds of works. According to me, generally, 80% of people use Notepad application as text editor only, they don’t know the versatile spheres of it but as an experienced one, I can tell you that there are a lot of tricks to using Notepad, among these .BAT is one of the most unexpected procedures. I am going to share my experience on “Notepad BAT Commands”.
5 WORKING Notepad BAT Commands And Tricks
This notepad .bat tricks
1. Make a “MATRIX” Effect on Notepad
Step 1: Open Notepad – Open the notepad file that’s located on your computer accessory folder within the start menu.
Step 2: Copy and Paste the Extention Below within the Notepad File
@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
Step 3: Save the File – Save the file on your desktop with a .bat extension like Matrix.bat
Step 1: Open Notepad – Open the notepad file that’s located on your computer accessory folder within the start menu.
Step 2: Copy and Paste the Extention Below within the Notepad File
@echo off
:menu
title MenuMaker V0.1
color 06
cls
echo.
echo.
echo Menu Tester…
echo Type 1 for fun!
echo Type 2 for a bun!
set /p choice=
If %choice% EQU 1 goto fun
If %choice% EQU 2 goto bun
:fun
title !!!Fun!!!
color 08
cls
echo !!!FUN!!!
echo NO FUN HERE!
pause
goto menu
:bun
title !!!Bun!!!
color 08
cls
echo !!!Bun!!!
echo No bun here…
pause
goto menu
3. COMPUTER-BOOTER PROGRAM
Step 1: Open Notepad – Open the notepad file that’s located on your computer accessory folder within the start menu.
Step 2: Copy and Paste the Extention Below within the Notepad File
@echo off
:Main
title ComputerBooter V0.1
cls
color A
echo.
echo.
echo 1} About This Program
echo 2} Exit This Program
echo.
echo 3} Shutdown Computer
echo 4} Restart Computer
echo 5} Logoff Computer
echo.
echo 6} Start Control Panel
echo 7} Start System32 Folder
echo.
echo 8} Crash your Computer
echo.
echo 9} Our coding Website
set /p select=
if %select% EQU 1 goto About
if %select% EQU 2 goto Exit
if %select% EQU 3 goto Shutdown
if %select% EQU 4 goto Restart
if %select% EQU 5 goto Logoff
if %select% EQU 6 goto Control
if %select% EQU 7 goto System32
if %select% EQU 8 goto Crash
if %select% EQU 9 goto Webpage
:About
title About ComputerBooter V0.1
color E
cls
echo.
echo.
echo ABOUT COMPUTERBOOTER 0.1 FOR WINDOWS
echo (BATCH FILE VERSION)
echo.
echo All Of this program was created by techypaw.com
echo.
echo.
echo
set /p web=
if %web% EQU Start goto Webpage else goto Main
:Exit
Exit
goto Exit
:Shutdown
start C:\Windows\System32\Shutdown.exe -s -t 5 -c “ComputerBooter Will now Shutdown Your Computer”
goto Main
:Restart
start C:\Windows\System32\Shutdown.exe -r -t 5 -c “ComputerBooter Will now Shutdown Your Computer”
goto Main
:Logoff
start C:\Windows\System32\Shutdown.exe -l -t 5 -c “ComputerBooter Will now Logoff Your Account”
goto Main
:Control
start Control Panel
goto Main
:System32
start C:\Windows\System32
goto Main
:Webpage
echo Currently Loading
ping localhost -n 1 >nul
cls
echo Currently Loading.
ping localhost -n 1 >nul
cls
echo Currently Loading..
ping localhost -n 1 >nul
cls
echo Currently Loading…
ping localhost -n 1 >nul
cls
echo Successfully Loaded…
ping localhost -n 2 >nul
start https://www.techypaw.com
echo Booting Up Menu…
ping localhost -n 2 >nul
goto Main
:Crash
start C:\windows\system32\CMD.exe
goto Crash
Step3: Then save it as BOOT.bat and enjoy it!
4. USER PASSWORD CODE CRACKER V1
(NOTE: This won’t work on all MACHINES!)
Step 1: Open Notepad – Open the notepad file that’s located on your computer accessory folder within the start menu.
Step 2: Copy and Paste the Extention Below within the Notepad File
@echo
title CodeCracker By Techypaw!
color 5E
echo CodeCracher V1
echo.
net user
echo type in a username in the option above:
Set /p username=
net user %username%
echo Changing Password…
Step 3: save it as PasswordCracker.bat!
5. TIMER (COUNT DOWN)
(Note: Copy and paste the following into notepad.)
Step 1: Open Notepad – Open the notepad file that’s located on your computer accessory folder within the start menu.
Step 2: Copy and Paste the Extention Below within the Notepad File
@echo off
:Start
title timer
color EC
echo Type in an amount of time (Seconds)
set /p time=
color CE
:loop
cls
ping localhost -n 2 >nul
set /a time=%time%-1
echo %time%
if %time% EQU 0 goto Timesup
goto loop
:Timesup
title Time Is Up!
ping localhost -n 2 >nul
ping localhost -n 2 >nul
cls
echo The Time is up!
pause
cls
echo Thank you for using this software.
pause
goto Web
goto Exit
:Web
start https://www.techypaw.com
:Exit
Exit
goto Exit
Step 3: Save it as Timer.bat and enjoy it!
Bonus:
TIMER – SHUTDOWN COMPUTER WHEN TIMEOUT
Step 1: Open Notepad – Open the notepad file that’s located on your computer accessory folder within the start menu.
Step 2: Copy and Paste the Extention Below within the Notepad File
@echo off
:Start
title timer
color EC
echo Type in an amount of time (Seconds)
set /p time=
color CE
:loop
cls
ping localhost -n 2 >nul
set /a time=%time%-1
echo %time%
if %time% EQU 0 goto Timesup
goto loop
:Timesup
title Time Is Up!
ping localhost -n 2 >nul
ping localhost -n 2 >nul
color 5F
echo You have 20 seconds before Windows Will shut down!
ping localhost -n 20 >nul
ping localhost -n 2 >nul
ping localhost -n 2 >nul
ping localhost -n 1 >nul
ping localhost -n 1 >nul
ping localhost -n 1 >nul
goto Shutdown
:Shutdown
color 4F
echo Windows is now shutting down!
ping localhost -n 1 >nul
start C:\Windows\System32\Shutdown.exe –s
The Techypaws Guide:
I think this content will give you prior information about Notepad BAT Commands. My suggestion is that some tricks are harmful so use those tricks consciously. Read the article step by step carefully and then use it. For more queries, you may contact me through the given comment box.