A driver that call BSOD with code 0x00000000(STATUS_SUCCESS)
This driver and its accompanying control panel are created for testing and debugging purposes. The driver initiates a blue screen with the STATUS_SUCCESS error code (0x00000000). The control panel streamlines the installation, activation, and removal of the driver. The driver is compatible with x64 versions of Windows XP and newer.
- Not Recommended for Real Systems with important data: Avoid using on live systems.
- Potential for Data Loss: May result in data loss and system crashes.
- Intended for Testing and Debugging: Solely for testing and debugging purposes.
- Installation:
- Run control_panel.bat and select the "Install driver" option.
- Ensure that you are operating in a controlled testing environment.
- Activation:
- Run control_panel.bat and choose the "Activate (crash system)" option.
- Uninstallation:
- Run control_panel.bat and select the "Uninstall driver" option.
Reinstallation:
- Run control_panel.bat and choose the "Reinstall driver" option.
If you encounter issues with the Control Panel or prefer manual installation, you can use the sc command to install the driver.
Install:
- Open a Command Prompt with administrative privileges.
- Navigate to the directory containing the driver file (e.g., bsod.sys).
- Execute the following command to create the service for driver:
sc create bsod binpath= "%cd%\bsod.sys" type= kernel - If encountering a service already exists error, execute:
sc delete bsodThen retry step 3.
Activation: Upon launch, the driver executes a function triggering an unstoppable BSOD. Exercise extreme caution.
- After service creation, initiate it with the command:
sc start bsod
Uninstall:
- Open a Command Prompt with administrative privileges.
- To uninstall the driver, use the command:
sc delete bsod
Reinstall
- Open a Command Prompt with administrative privileges.
- Navigate to the directory containing the driver file (e.g., bsod.sys).
- Delete the driver:
sc delete bsod - Install the driver:
sc create bsod binpath= "%cd%\bsod.sys" type= kernel
By using this driver, you agree that the author is not responsible for potential consequences, including data loss. Use at your own risk. The driver cannot be employed for malicious actions to harm someone's computer.