Click here to Skip to main content
15,868,340 members
Articles / Containers / Virtual Machine

BSOD Saver - Blue Screen of Death Screen Saver

Rate me:
Please Sign up or sign in to vote.
4.50/5 (4 votes)
20 Jul 2010CPOL7 min read 61.8K   1.4K   17   12
A screen saver simulating blue screen of death and Windows XP restart

Introduction

BSOD is an error message that is displayed when a critical system error occurs.

blueMsg.jpg

From Wikipedia: The Blue Screen of Death (also known as a stop error, BSoD, bluescreen, or Blue Screen of Doom) is a colloquialism used for the error screen displayed by some operating systems, most notably Microsoft Windows, after encountering a critical system error that can cause the system to shut down to prevent irreversible damage to the system's integrity. It serves to present information for diagnostic purposes that were collected as the operating system issued a bug check.”

Before Windows XP, appearing of BSOD was frequent. If one of the running applications did something wrong, and you were welcomed by BSOD! Since Windows XP, it’s not so frequent, or I can say, it's rare, but still the blue color of screen makes people pale or red!

Background

Often infamous things from history are used to create fun. The same is the case with BSOD. Sometime back, I encountered a screensaver application from sysinternals.com.
This is a screensaver application which simulates BSOD along with the restarting of PC. As the source code was not available, I created a new application with the same behavior. This application also provides details on how to create a screen saver application with MFC. It can be run both as a screen saver and standalone application based on the arguments.

BSOD Internals

Whenever the Windows operating system encounters a system crash (due to some application error or by some other reason), the BSOD screen appears and shows the error message. Due to the system crash, the screen resolution is changed to a 640X480 and a text message is displayed with white text in blue background.

A typical BSOD image can be obtained from Google image search.

The font used while showing this message is Lucida Console (Notepad Font). I found this information by printing message with different fonts and comparing it with BSOD screen. Later, I discovered that this information is already mentioned in Wikipedia J.

Simulating BSOD

From the above gathered information, we can simulate a BSOD by:

  1. Changing screen resolution to 640x480.
  2. Showing text message with font as Lucida Console, and background color as blue.

If this work is done in a screen saver application, we get a BSOD screen saver.

Simulating PC Restart

This article talks about simulating only Windows XP restart. For other versions of windows, changes need to be done in the application.

When we boot a Windows XP based PC, after the POST process, Windows logo with a special progress bar is displayed at a resolution of 640x480. In the background, the drivers are loaded and when the loading is done, Explorer.exe is launched which loads the desktop. This is just an overview and many other important tasks are done behind the curtain. To know more, click here.

If we can somehow show the same logo with the same progressbar in a 640x480 resolution window, we can simulate PC start process. To get the real Logo & ProgressBar, I used PrintScreen during the Boot Process of WindowsXP on a virtual machine (Virtual box). I extracted the scrollbar thumb image and added some motion in it to simulate progressbar.

Final Application Approach

  1. A MFC dialog based application is created using the wizard. The dialog is borderless and it’s hidden from the appearing in the taskbar.
  2. The Windows logo is saved as a resource file and shown in picture viewer control.
  3. The default BSOD Error message is stored in the program as a string. To provide flexibility to change message on the fly, it’s also read from ErrorMessage.txt file from application directory. The default message will be displayed only if the ErrorMessage.txt file is not available in the app path.
  4. A class CProgressBar is created to draw the custom scrollbar control. This class loads the scroll thumb from resource and scrolls it based on timer event.
  5. During the initialization of controls, the application saves the current resolution and changes the resolution to 640X480. To change resolution, I have reused the code from CodeProject article - Programmatically change display resolution By Cristian Amarie.
  6. The application displays the BSOD message and visualizes PC Restart in a loop. This loop is maintained by another timer. The duration of Error Message, Windows startup & Post Start duration can be controlled by modifying m_ErrorMsgDuration, m_WindowStartDuration & m_AfterStartDuration variable values respectively.

Application as Screen Saver

To run the application as screensaver, change the extension from exe to scr and copy it in c:\Windows\System32 folder. Now it can be configured using the Screen Saver settings dialog.

Screen Saver Details

A screen saver is an application which runs in full screen mode with its window at topmost position. The screen saver application has extension scr in place of exe. To install a screensaver, the executable can be manually copied to windows\system32 folder or the user can choose the Install option from right click context menu.

A screensaver is launched by Windows with one of three command line options:

/s – This option is passed to start the screensaver in full-screen mode. In this case, the application is launched normally to show the output in full screen.

/c – This option is passed to show the configuration settings dialog box. In this case, the application shows a configuration dialog to modify the launch time and other settings.

/p #### – This option is passed to display the preview of the screensaver using the specified window handle ####. The value passed with /p is the decimal equivalent of preview window handle in the screen saver settings dialog. With this option, the application is expected to run in the background and use this window as render window. In this case, the output of application should be displayed in the window whose handle is passed while launching application.

In place of directly rendering in the preview window, screen savers generally create a new window with the preview window as parent window. The new window position and size is kept the same as the preview window and the application renders its output in the new window. As the new window size & position is the same as the preview window, it looks as if the output is displayed in the preview window.

For simplicity, I have skipped the preview mode code from the BSOD application. Lucian Wischik has a complete website having details for creating screen saver with all the options working. You can visit his site for more details.

About the Code

The code for this article is very simple. The approach of this application is already described above and the code is written to follow that approach.

Following is the class list in this project:

  • CBsodSaverApp

    : Main application class derived from CWinApp

  • CBsodSaverDlg

    : Main dialog class derived from CDialog

  • CChangeRes

    : Class used to change screen resolution

  • CConfigDlg

    : Dialog class for changing the application settings

  • CMyStatic

    : Class for setting background and foreground color of a static control.

  • CProgressBar

    : Class which simulates the Windows startup progress bar.

At the time of application start, its parameters are checked in function CBsodSaverApp::InitInstance() and either the Config Dialog or the main application dialog is displayed based on the provided parameters.

C++
CString strOption = CmdLine.Right (CmdLine.GetLength() - CmdLine.ReverseFind('/') - 1);

switch(strOption[0])  
{
case 'c':
case 'C':
    {
        CConfigDlg dlg; 
        m_pMainWnd = &dlg; 
        INT_PTR nResponse = dlg.DoModal();
    }
    break;

case 'p':
case 'P':
    {
        //Code to create a new preview window and show the output in that window
    }
    break;

case 's':
case 'S':

default://Launch the application in full screen mode otherwise.
    {
        CBsodSaverDlg dlg;
        m_pMainWnd = &dlg;
        INT_PTR nResponse = dlg.DoModal();
    }
}

The CBsodSaverDlg class contains the following member variables:

C++
CMyStatic m_BlueText; 	//Static box to display Error Message.
CBrush m_BkgrndBrush; 	//Solid Brush to change the dialog color to m_BkColor.
COLORREF m_BkColor; 	//Dialog background color.
CStatic m_WindowsLogo; 	//Static Box (Image Type) to show the Windows Logo.
CProgressBar m_ScrollbarBox; //Windows XP startup progressbar.
CPoint m_OldResolution; 	//Initial desktop resolution.
int m_TimerCount; 		//Keeps a count for error/startup & light blue desktop
CString m_ErrorMessage; 	//Default Error Message.
UINT m_ErrorMsgDuration; 	//Time taken to show the error message (in seconds).
UINT m_WindowStartDuration; //Time taken to show Windows Startup Logo(in seconds).
UINT m_AfterStartDuration; 	//Time taken to show the Initial desktop (light blue) 
			// (in seconds).

A timer is started in the OnInitDialog() function and the UI objects are made hidden/visible based on m_ErrorMsgDuration, m_WindowStartDuration and m_AfterStartDuration values.

The function RepositionControls() is used to reposition the controls in the proper position.

The class CProgressBar maintains its own timer to reposition the scrollbar thumb image in a given rectangle area. The width, height & speed are maintained by macros:

C++
#define SCROLL_BAR_HEIGHT 9 

#define SCROLLING_SPEED 40

Points of Interest

As told above, in the preview mode, the screen saver is launched with the preview window handle as its 2nd argument. The handle is passed as decimal argument and the screen saver application uses this handle as render window.

That means that if a window handle is passed with /p argument to the screen saver, it will render to that window only. To verify this, start the Notepad application and get its main window handle with SPY++ application that is shipped with Visual Studio. Use calculator to convert window handle value from Hex to decimal.

On my machine, the Notepad window handle is – 000F05F6 and its Decimal equivalent is 984566. Now to launch screen saver, open command prompt and go to c:\windows\System32 folder. Use dir command to search for the available screen savers. I am using Windows 7 and have Bubbles screen saver.

To launch the bubbles screen saver in Notepad, run the command like this:

c:\Windows\System32>Bubbles.scr /p 984566

And wow!!!

The screen saver is running in Notepad.

ScreenSaverInNotepad.png

I am also trying to develop a real BSOD application which will cause the system everytime user runs that. If someone has some ideas, kindly share that.

History

  • Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader Product Based MNC
India India
Working in the graphics devision of a leading MNC.
Having 5+ yrs experience on c, c++, MFC.
Have exposure to C# and asp.net.

Also have good experience in flash & flex.



http://niscience.blogspot.com

Comments and Discussions

 
GeneralDetect Blue screen occurance Pin
Ashok A8-Dec-10 7:42
professionalAshok A8-Dec-10 7:42 
GeneralMy vote of 5 Pin
GPUToaster™21-Jul-10 23:16
GPUToaster™21-Jul-10 23:16 
GeneralRe: My vote of 5 Pin
nbugalia22-Jul-10 8:08
nbugalia22-Jul-10 8:08 
GeneralMy vote of 5 Pin
MarceloFabiano20-Jul-10 20:12
MarceloFabiano20-Jul-10 20:12 
GeneralRe: My vote of 5 Pin
nbugalia21-Jul-10 7:11
nbugalia21-Jul-10 7:11 
QuestionIs this original? Pin
ellwoods20-Jul-10 5:44
ellwoods20-Jul-10 5:44 
AnswerRe: Is this original? Pin
nbugalia20-Jul-10 7:25
nbugalia20-Jul-10 7:25 
Generaldual screen Pin
ii_noname_ii20-Jul-10 3:39
ii_noname_ii20-Jul-10 3:39 
On dual screen setup, one screen stays normal..
GeneralRe: dual screen Pin
nbugalia20-Jul-10 7:27
nbugalia20-Jul-10 7:27 
GeneralBSODs Pin
The_Mega_ZZTer20-Jul-10 3:00
The_Mega_ZZTer20-Jul-10 3:00 
GeneralRe: BSODs Pin
Rick York20-Jul-10 6:54
mveRick York20-Jul-10 6:54 
GeneralRe: BSODs Pin
nbugalia20-Jul-10 7:22
nbugalia20-Jul-10 7:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.