Hey check this out..
This is another of my attempt at making a cool softy using AHK... This will enable the crash option in Windows XP computers and you can see the BSOD(The Blue Screen Of Death)
after it is enabled.. You need to press Rt.Ctrl+ Scroll Lock(twice) though...
Have Fun Crashing!! --
However, it is still in development stages.. Feel free to modify it in any way you like.. But hey if yours is better, please contribute!!
--------------------------------------------------------------------
after it is enabled.. You need to press Rt.Ctrl+ Scroll Lock(twice) though...
Have Fun Crashing!! --
However, it is still in development stages.. Feel free to modify it in any way you like.. But hey if yours is better, please contribute!!
--------------------------------------------------------------------
#Persistent
#NoTrayIcon
#SingleInstance force
Gui, Add, StatusBar,, Bar's starting text (omit to start off empty).
SB_SetText("Let the havoc begin!!")
Gui +LastFound ; Make the GUI window the last found window for use by the line below.
Menu, HelpMenu, Add, &About, HelpAbout
Menu, MyMenuBar, Add, &Help, :HelpMenu
Gui, Menu, MyMenuBar
Gui, Add, Text, x36 y20 w180 h30 , Windows Crasher By Sankalp Singha.
Gui, Add, Text, x66 y50 w130 h20 , What do you want to do??
Gui, Add, Button, x16 y90 w100 h30 , Activate Crashing
Gui, Add, Button, x156 y90 w100 h30 , Remove Crashing
Gui, Add, Button, x56 y130 w140 h40 , PRANK VIRUS
Gui, Add, Text, x126 y100 w30 h20 , OR
Gui, Add, Text, x36 y190 w130 h50 , To Crash windows`, press Rt.Ctrl+ScrollLock(2 times)
; Generated using SmartGUI Creator 4.0
Gui, Show, w277 h241,BSOD - Sankalp Singha
Return
GuiClose:
ExitApp
HelpAbout:
Gui, 2:+owner1 ; Make the main window (Gui #1) the owner of the "about box" (Gui #2).
Gui +Disabled ; Disable main window.
Gui, 2:Add, Text,, This program will activate the crashing feature in Windows NT boxes and if you press the Right Control + Scroll Lock Twice `n then the computer will show you the BSOD( BLUE SCREEN OF DEATH ).`n However in many NT boxes the computer will straightaway reboot. `n An initial reboot is necessary to activate this feature in the computer. `n For more info and the source code, please visit -- www.sankalpsingha.blogspot.com
Gui, 2:Add, Button, Default, OK
Gui, 2:Show
return
2ButtonOK: ; This section is used by the "about box" above.
2GuiClose:
2GuiEscape:
Gui, 1:-Disabled ; Re-enable the main window (must be done prior to the next step).
Gui Destroy ; Destroy the about box.
return
ButtonActivateCrashing:
MsgBox, 48, CREATING!!, Please wait`,`, we are creating the Crash Registry value..
regread,regdata1,REG_DWORD,HKEY_LOCAL_MACHINE,SYSTEM\CurrentControlSet\Services\i8042prt\Parameters ,CrashOnCtrlScroll
ifnotequal,regdata1,1
Regwrite,REG_DWORD,HKEY_LOCAL_MACHINE,SYSTEM\CurrentControlSet\Services\i8042prt\Parameters ,CrashOnCtrlScroll,1
MsgBox, 64, CREATED!!, Ok.. The Registry value has been created!!..
MsgBox, 33, REBOOT NECESSARY!!, Should I reboot your computer??
IfMsgBox Ok
Shutdown,6
else
exitapp
ButtonRemoveCrashing:
MsgBox, 48, Removing Crasher.., Please wait while I remove the registry values...
regread,regdata1,REG_DWORD,HKEY_LOCAL_MACHINE,SYSTEM\CurrentControlSet\Services\i8042prt\Parameters ,CrashOnCtrlScroll
ifnotequal,regdata1,0
RegDelete,HKEY_LOCAL_MACHINE,SYSTEM\CurrentControlSet\Services\i8042prt\Parameters ,CrashOnCtrlScroll
MsgBox, 64, Removed!!, I have removed the crasher from your computer...
MsgBox, 33, REBOOT NECESSARY!!, Should I reboot your computer??
IfMsgBox Ok
Shutdown,6
else
exitapp
ButtonPrankVirus:
MsgBox, 49, Virus Starting.., Are you SURE??`nBE VERY CAREFUL...
MsgBox, 48, LOL!! Virus Started!!, Haha... Check your desktop man.... HAHAHA!! .... `;-)
-------------------------------------------------------------------------

