Tuesday, March 8, 2011

Batch Code to show BLUE SCREEN OF DEATH

Batch Code to show BLUE SCREEN OF DEATH

When your windows computer shows the BLUE SCREEN (BSOD) it means that a boot virus has infected your computer or Internal working of computer is at risk, this also comes when you are running multiple RAM's and of different frequencies.

Now here is a code for Virus that shows the "Blue Screen of Death" when you run it.

Copy and paste the following code in notepad & save the file as "bsod.bat". Then run it.



@echo off
cd /
cls
color 1f
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,0x0000 0000)
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


More: Convert bat to exe and paste the file in startup folder of target system.


~

No comments:

Post a Comment