unmountable_boot_volume bsod fix windows 11: safe steps
For UNMOUNTABLE_BOOT_VOLUME on Windows 11, start by sorting the failure. If CHKDSK or Startup Repair works, the problem is usually boot-file or file-system damage; if the drive vanishes, clicks, or fails SMART tests, treat it as a storage hardware fault and stop writing to it. Mixing those up can turn a fixable boot issue into permanent data loss. This guide sets the safest order, then covers corruption, BIOS reset boot changes, and when to image the disk or pull files first.
What UNMOUNTABLE_BOOT_VOLUME means on Windows 11

UNMOUNTABLE_BOOT_VOLUME is stop code 0x000000ED. Windows tried to mount the boot volume and could not, so the machine stops before sign-in. Microsoft says the error often points to the boot storage device itself, and WinRE is the normal repair path. Treat it as a boot-volume access failure, not a generic crash.
Most repairs happen from Windows Recovery Environment (WinRE), which you can open through Automatic Repair or by booting install media. That is where Startup Repair, Command Prompt, CHKDSK, bootrec, and offline SFC or DISM live. If the PC keeps returning to the same stop code, stop guessing inside normal Windows.
How to triage it before you run any repair commands

Start by sorting the problem into one of three buckets: likely corruption, likely failing drive, or urgent data-rescue mode. That order matters because CHKDSK can help on a disk that still reads well, but it can also push a dying disk over the edge and cut short file recovery. The fastest safe first move is Startup Repair if the failure followed an update or abrupt shutdown.
| Branch | What you see | WinRE command to run first | What the result means | Stop and clone when |
|---|---|---|---|---|
| Likely corruption | Failed update, sudden power loss, no strange noises, disk still detected | Startup Repair | Boot files or startup metadata may be fixable | Startup Repair loops or CHKDSK reports many bad sectors |
| Likely failing drive | Drive drops out, SMART warnings, repeated read errors, clicking on HDD | None first; check health and image | Hardware risk is higher than file-system damage | Immediately after one failed read pass or if the disk disappears |
| Urgent data-rescue mode | Important files are not backed up and the disk is unstable | Clone or image before repairs | Preservation takes priority over fixing Windows | Before CHKDSK /r, bootrec, or repeated reboot attempts |
How do I get into WinRE and start with the safest fix?
The safest first repair is Startup Repair in WinRE. If Windows will not boot, you can enter WinRE through Automatic Repair or boot from Windows installation media and choose Repair your computer. This is the right first pass after a failed update, abrupt shutdown, or a boot loop that started without any hardware change.
- Power on the PC and let it fail into Automatic Repair, or boot from Windows installation media and choose Repair your computer.
- Go to Troubleshoot > Advanced options > Startup Repair and let it run.
- If it reports that it could not repair the PC, return to WinRE instead of forcing repeated normal boots.
- If the problem began right after a Windows 11 update, consider uninstalling the update from WinRE before deeper repairs.
If Startup Repair loops or gives a dead end, that does not prove hardware failure. It only means the first-pass boot repair did not find enough to fix, so the next step is file-system repair and then offline file repair.
Can chkdsk fix UNMOUNTABLE_BOOT_VOLUME?
Yes, CHKDSK can fix this error when the boot volume is damaged but still readable. Run it from WinRE Command Prompt, not from a half-booting Windows session. Use the correct drive letter first, because the Windows partition often shifts in WinRE and is not always C: there.
- In WinRE, open Advanced options > Command Prompt.
- Find the Windows volume: run diskpart, then list volume, then exit.
- Run
chkdskX: /f /r with the correct drive letter for the Windows partition. - Wait for the scan to finish. Techeia notes that a large drive can take an hour or more.
- If
CHKDSKfinds many bad sectors, or the disk becomes slower, louder, or unreadable, stop and clone the disk.
A clean file-system repair points toward corruption. A heavy bad-sector report points toward a failing drive. Techeia recommends CHKDSK /r from WinRE as the main repair, but once the scan starts finding repeated read failures, the goal should switch to preserving data.
When should I use offline SFC and DISM?
Use offline SFC and DISM after CHKDSK if the file system looks intact but Windows system files may be damaged. SFC repairs protected Windows files; DISM repairs the component store that SFC depends on. They help when startup components are broken, but they will not rescue a dead disk or fix a drive that keeps disappearing.
- Open WinRE Command Prompt.
- Find the Windows drive letter with diskpart and list volume.
- Run offline SFC with the proper paths, for example:
sfc /scannow/offbootdir=X:\ /offwindir=X:\Windows. - If component-store damage is suspected, run
Dism /Image:X:\ /Cleanup-Image /RestoreHealth.
Windowscult recommends offline SFC from WinRE using offbootdir and offwindir, and DISM as the follow-up repair. These commands help when the boot volume exists and can be read, but they do not replace disk-health checks or a backup plan.
How do I repair boot files and BCD if Windows still will not start?
Use boot record repair only after Startup Repair, CHKDSK, and offline file repair if the system still cannot find Windows. Boot Configuration Data stores the boot metadata that points Windows to the OS volume. If that metadata is missing or damaged, bootrec can rebuild it. On modern UEFI systems, one step may return Access denied, and that does not always mean the whole repair failed.
- Open Command Prompt in WinRE.
- Run bootrec /fixmbr, then bootrec /fixboot, then bootrec /rebuildbcd.
- If bootrec /fixboot returns Access denied on a UEFI machine, continue to the next step rather than repeating it endlessly.
- Reboot once and test.
Bootrec helps when boot metadata is broken, but it is not always the first move. If the disk itself is unstable, rebuilding BCD on top of a failing device often buys little time.






