Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
3.8 KiB

  1. <%@Language='JScript' CODEPAGE=1252%>
  2. <!--#INCLUDE file="include/header.asp"-->
  3. <!--#INCLUDE file="include/body.inc"-->
  4. <!--#INCLUDE file="usetest.asp"-->
  5. <!--#INCLUDE file="../include/DataUtil.asp" -->
  6. <p class="clsPTitle">
  7. Error report information
  8. </p>
  9. <p>
  10. Each error report contains the minimum information needed to help identify the cause of the Stop error.
  11. </p>
  12. <p>
  13. An Error report identifies the following items:
  14. </P>
  15. <UL>
  16. <LI>Operating system version, including any system updates.
  17. <LI>Number of available processors.
  18. <LI>Time stamp that indicates when the Stop error occurred.
  19. <LI>Loaded and recently unloaded drivers. This identifies the modules used by the kernel when the Stop error occurred and those that were used recently.
  20. <LI>Processor context for the process that stopped. This includes the processor, hardware state, performance counters, multiprocessor packet information, deferred procedure call information, and interrupts (requests from software or devices for processor attention).
  21. <LI>Process information and kernel context for the halted process. This includes the offset (location) of the directory table and the page frame number database that maintains the information about every physical page (block of memory) in the operating system.
  22. <LI>Process information and kernel context for the thread that stopped. This identifies registers (data-storage blocks of memory in the processor), interrupt request levels, and includes pointers to operating system data structures.
  23. <LI>Kernel-mode call stack for the interrupted thread. This is a data structure that consists of a series of memory locations and includes a pointer to the initial location.
  24. <LI>The operating system (OS) name (for example, Windows XP Professional).
  25. </UL>
  26. <p>
  27. For Microsoft Windows XP submissions the following additional information is also collected:
  28. </P>
  29. <UL>
  30. <LI>The OS version (for example, 5.1.2600.0 ).
  31. <LI>The OS language as represented by the locale identifier (LCID)(for example, 1033 for U.S. English). This is a standard international numeric abbreviation.
  32. <LI>The list of hardware devices installed on your computer.
  33. <LI>For each device:
  34. <ul type='circle'>
  35. <li class='clsSubLI'>Hardware description
  36. <li class='clsSubLI'>Plug and Play ID (PnP ID)
  37. </ul>
  38. <LI>The list of drivers in the Drivers folder on your hard disk. The folder is usually located at c:\windows\system32\drivers.
  39. <LI>For each driver:
  40. <ul type='circle'>
  41. <li class='clsSubLI'>File size
  42. <li class='clsSubLI'>Date created
  43. <li class='clsSubLI'>Version
  44. <li class='clsSubLI'>Manufacturer
  45. <li class='clsSubLI'>Full product name
  46. </ul>
  47. </ul>
  48. <p>For the exact specifications of Stop error reports (in small memory dump file format), see the <a class="clsALinkNormal" href="http://msdn.microsoft.com">Microsoft Developers Network Online Web site</a>.</p>
  49. <%
  50. var GUID = new String( Request.Cookies("OCAV3")( "GUID" ) );
  51. var szPrivacyState = new String( Request.QueryString("T") )
  52. var szContinueURL = "";
  53. var szCancelURL = "";
  54. var L_CANCEL_TEXT = "Back";
  55. var L_CONTINUE_TEXT = "Continue";
  56. var L_CANCELACCESSKEY_TEXT = "b";
  57. var L_CONTINUEACCESSKEY_TEXT= "c";
  58. var szReferer = Request.ServerVariables( "HTTP_REFERER" );
  59. var rBackTest = /faq/i;
  60. if ( rBackTest.test( szReferer ) )
  61. fnPrintLinks ( "faq.asp", "" );
  62. else
  63. {
  64. if ( szPrivacyState == "0" )
  65. fnPrintLinks( "privacy.asp?t=0", "" );
  66. else if ( szPrivacyState == "1" )
  67. fnPrintLinks( "privacy.asp?t=1", "" );
  68. else
  69. fnPrintLinks( "privacy.asp", "" );
  70. }
  71. %>
  72. <script type='text/javascript' src='include/ClientUtil.js'></script>
  73. <!-- #include file="include/foot.asp" -->