Windows 7 Tips: Using Reliability monitor

 

The Reliability Monitor is intended for advanced computer users, such as software developers and network administrators. Reliability monitor was introduced first in Windows Vista as “Reliability and Performance Monitor”. Now it has been tear-off and independent from Performance Monitor. The purpose of reliability monitor is to graphically plot the stability index and display the hardware and software failures and other core information from the system (such as application installation and removal etc.), which affects the stability of the machine.

image

You can see that Safari and other application has crashed many times and also the I’ve got some some warnings when I tried uninstalling the beta version of office 2010. The list also contains the programs I uninstalled.

  • Click Maintenance. Then, under Check for solutions to problem reports, click View reliability history.

  • In Reliability Monitor, you can:

    • Click any event on the graph to view its details.

    • Click Days or Weeks to view the stability index over a specific period of time.

    • Click items in the Action column to view more information about each event.

    • Click View all problem reports to view only the problems that have occurred on your computer. This view doesn’t include the other computer events that show up in Reliability Monitor, such as events about software installation.

  • You can see more details in Microsoft website.

     

    How to remove the Document name from the SDI/MDI Window titlebar?

     

    When you create a simple SDI Application, you can see that the Title of the Window is displayed as “Document Name – Application name” like you’re seeing below.

    image

    How we can remove this? It’s simple, just remove the FWS_ADDTOTITLE style from the frame window. You’ve to speicify this before the window being created. You can write the code in PreCreateWindow function.

    See the snippet below

    BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
     {
     	cs.style &= ~ FWS_ADDTOTITLE;	// Remove the style
     	if( !CFrameWndEx::PreCreateWindow(cs) )
     		return FALSE;
     	return TRUE;
    }
    

    After that you can see the Window title like this!

    image