Windows 0x0000007BHigh

Stop 0x0000007B: How to Quickly Fix Windows Boot Error

The STOP 0x0000007B (INACCESSIBLE_BOOT_DEVICE) error blocks system boot. In this guide, you'll find current methods to regain disk access without reinstalling the OS.

Updated at April 6, 2026
10-20 min
Medium
FixPedia Team
Применимо к:Windows 10Windows 11Windows 8.1Windows 7

What Does Error 0x0000007B Mean

The Blue Screen of Death (BSOD) with the STOP 0x0000007B code (often accompanied by the message INACCESSIBLE_BOOT_DEVICE) appears at the very earliest stages of system startup. Windows attempts to mount the system partition, but the storage controller or file system becomes inaccessible. As a result, the kernel cannot read critical drivers and crashes to prevent further data corruption.

Common Causes

  • Incorrect SATA controller mode in BIOS/UEFI. The system is installed in AHCI mode, but the BIOS is set to IDE/Legacy, or vice versa.
  • Missing or corrupted storage driver. Files like storahci.sys, iaStorA.sys, or nvme.sys are damaged or fail to load due to version conflicts.
  • Corrupted file system table (NTFS) or boot sector. This can occur after power surges, improper shutdowns, or incorrect partition operations.
  • Failure after a Windows update or driver installation. New controller updates may be incompatible with the current hardware.
  • Physical hardware failure. A faulty SATA cable, a loose M.2 connection, or degradation of the SSD/HDD.

Solutions

Method 1: Change SATA Controller Mode in BIOS/UEFI

The most frequent trigger for this error is a BIOS setting failure or accidental reset.

  1. Restart the PC and immediately press Del, F2, or F12 to enter BIOS/UEFI.
  2. Find the Advanced, Configuration, or Storage tab.
  3. Open SATA Configuration (or SATA Mode Selection).
  4. Change the setting to AHCI (recommended for SSDs and modern HDDs). If the system was previously on an older disk, try IDE or Legacy.
  5. Save changes with F10 and reboot.

⚠️ Important: If the PC continues to show 0x0000007B after switching, revert to the original setting. In some cases, Windows must be prepared for the mode change via the registry beforehand.

Method 2: Rebuild the Bootloader via WinRE

If the controller settings are correct, a manual rebuild of the boot files is required.

  1. Boot from a Windows installation USB drive or recovery disk.
  2. On the installation screen, click NextRepair your computerTroubleshootCommand Prompt.
  3. Identify the system drive letter (it often changes in the recovery environment): type dir C:\Windows or dir D:\Windows. Note the letter where the Windows folder exists.
  4. Run the following commands in sequence (replace C: with the letter you found):
    bootrec /fixmbr
    bootrec /fixboot
    bcdboot C:\Windows /s C: /f ALL
    
  5. Close the window and restart the computer.

Method 3: Check File System Integrity

NTFS logical errors often block access to boot files.

  1. In the same recovery environment command prompt, type:
    chkdsk C: /f /r
    
  2. Wait for the scan to complete. The utility will automatically fix corrupted clusters and restore file system tables.
  3. Restart the PC by typing exit.

Method 4: Fix Driver Settings via Registry

This helps if the error appeared after installing chipset drivers or third-party disk utilities.

  1. In the recovery environment, launch regedit.
  2. Select the HKEY_LOCAL_MACHINE hive, then from the menu choose FileLoad Hive.
  3. Navigate to Windows\System32\config, select the file SYSTEM, and give it the name OfflineSystem.
  4. Go to HKEY_LOCAL_MACHINE\OfflineSystem\ControlSet001\Services\storahci.
  5. Find the Start parameter and change its value to 0 (start at system boot).
  6. Select OfflineSystem, click FileUnload Hive, close the editor, and restart the PC.

Prevention

  • Never change SATA/RAID controller modes in BIOS without creating a full backup or system restore point.
  • Update chipset drivers only from the official website of your motherboard or laptop manufacturer.
  • Regularly check drive health with CrystalDiskInfo or built-in SMART monitors to replace disks early if the number of reallocated sectors increases.
  • Configure automatic system image backups to an external drive. This will restore functionality within 10 minutes even after critical bootloader damage.

F.A.Q.

What does the INACCESSIBLE_BOOT_DEVICE text mean?
Will resetting BIOS settings help fix error 0x0000007B?
Do I need to reinstall Windows after this error appears?

Hints

Check SATA Mode in BIOS/UEFI
Boot into Windows Recovery Environment
Restore Bootloader and Check Disk
Disable Conflicting Registry Filters

Did this article help you solve the problem?

FixPedia

Free encyclopedia for fixing errors. Step-by-step guides for Windows, Linux, macOS and more.

© 2026 FixPedia. All materials are available for free.

Made with for the community