Showing posts with label windows xp. Show all posts
Showing posts with label windows xp. Show all posts

Saturday, February 1, 2014

Solving BSOD Issues During Windows XP Installation

Contents

  • 1. Why BSODs occur during Windows XP Installation
  • 2. Decoding BSODs
  • 3. Stop 0x0000007B (INACCESSIBLE_BOOT_DEVICE): What does it mean
  • 4. Other stop codes
  • 5. Professional kernel dump analysis

1. Why BSODs occur during Windows XP Installation

BSOD (Blue Screen of Death) means that Windows Kernel has encountered an error it could not handle. For example:
Screenshot - Windows XP BSOD
Usual reasons for BSOD during Windows XP installation: lack of proper storage drivers, faulty hardware or the minimum system requirements for Windows XP are not met.

2. Decoding BSODs

BSODs usually contain the name of failed driver or Windows component (SPCMDCON.SYS in this example), error description (PAGE_FAULT_IN_NONPAGED_AREA), stop code afer "*** STOP: " (0x00000050 in this example) and other information.
Screenshot - BSOD Structure
The most important things to note are error description and corresponding stop code.

3. Stop 0x0000007B (INACCESSIBLE_BOOT_DEVICE): What does it mean

When Windows starts, it must load its Kernel into the memory. To do this, Windows must read the Kernel from the disk. In order to read the disk, Windows must load disk driver first. But disk driver can't be loaded before Kernel is already in the memory.
It's a kind of chicken-and-egg problem.
To solve it, Windows temporarily (only during boot time) is using different way to access the boot disk — not via usual driver, but via BIOS interface (Interrupt 13h). BIOS Interrupt 13h is slow, and incompatible with multitasking, so it is used only to read portion of the operating system from boot disk. Other disks are never read this way.
During the boot process, in order to remount boot filesystem in read/write mode, to reopen the registry in read/write mode, to load the rest of drivers, and to perform other necessary boot tasks, Windows switches from old BIOS interface for accessing the disk to native (driver) interface for accessing the disk. This switching allows disk access to be faster and more reliable, thus new way to access the disk is used until complete shutdown of the OS.
If this switching is impossible for some reason, then Windows Kernel fires error 0x0000007B (INACCESSIBLE_BOOT_DEVICE).
Usual reason why this switching might be impossible is a lack of driver: disk controller driver, or maybe bus (miniport) driver. There are also situations when the driver is present but contains bugs and needs to be upgraded in order to work.
The most probable reason why you are getting error 0x0000007B (INACCESSIBLE_BOOT_DEVICE) is SATA disk controller configured in AHCI mode, which is supported by BIOS interrupt 13h, but requires special driver from motherboard vendor in order to work in Windows.

There's also official Microsoft documentation of this error.

4. Other stop codes

0x0000000A (IRQL_NOT_LESS_OR_EQUAL),
0x000000D1 (DRIVER_IRQL_NOT_LESS_OR_EQUAL),
0x0000001E (KMODE_EXCEPTION_NOT_HANDLED), 0x000000C5 (DRIVER_CORRUPTED_EXPOOL), 0x0000008E (KERNEL_MODE_EXCEPTION_NOT_HANDLED)
One of your drivers contains bugs (name of failed driver may be helpful, but not necessary indicates the source of the problem). Try upgrading/disabling drivers for your devices starting from most unreliable/rare devices. Unplugging devices for the time of Windows Installation also may help. On fully installed Windows this error is usually caused by buggy antivirus/firewall software.
0x00000023 (FAT_FILE_SYSTEM),
0x00000024 (NTFS_FILE_SYSTEM)
May be related to unreliable hard disk: surface wear-out, bit rot etc. Also check SATA connectors aren't loose.
0x00000116 (VIDEO_TDR_ERROR) This one is related to the driver of your video card.
0x0000009C (MACHINE_CHECK_EXCEPTION),
0x00000124 (WHEA_UNCORRECTABLE_ERROR),
0x0000007E (SYSTEM_THREAD_EXCEPTION_NOT_HANDLED),
0x0000007F (UNEXPECTED_KERNEL_MODE_TRAP),
0x00000050 (PAGE_FAULT_IN_NONPAGED_AREA),
0x000000F4 (CRITICAL_OBJECT_TERMINATION)
It's recommended to test memory with MemTest86+. This recommendation also applies to all error codes listed above in this section. MemTest86+ can be converted from CD ISO image to bootable USB thumbdrive with FlashBoot. Also disable overclocking if you are using it.

5. Professional kernel dump analysis

If BSOD occurs after Windows installation, it usually creates dump file in C:\Windows\MiniDump (except the case when BSOD is caused by system disk failure). These dumps can be later copied, archived, sent by email and analyzed by trained professional using Microsoft tools.

Show full folder paths in both panes in Windows Explorer

In Windows 7, we found one default setting in Windows Explorer to be especially disconcerting (and frankly, illogical): When you click on a given folder in the right viewing pane in Windows Explorer (or, as you might think of it, My Computer), the folders in the left-hand pane do not automatically “follow along” and drill down to show you the file path. So, for example, if you’re trying to get to Folder C (through Folder A and then Folder B), all you see in the left pane is a closed Folder A, with Folder C open on the right. Folder B is nowhere to be found, except in the “breadcrumb trail” file-path sequence in the navigation bar at the top of the screen. For example, see the mismatch here; we're deep in subfolders of the "Mac" folder, but they're not showing up in the left column:
 
foldersmismatch
 
This can be a royal pain for those who work on company networks with heavily nested folder structures or even on complex home networks. Luckily, there’s an easy fix. In Windows Explorer, just go to the drop-down arrow next to the Organize tab at the top and choose Folder and search options. In the General tab, check Show all folders and Automatically expand to current folder:
 
39-Show-full-folder-paths
 
Now Windows Explorer should behave more like it did in Vista and XP.