Fix Windows Server Boot Failure After Windows Update
This guide explainswalks howthrough to recoverrecovering a Windows Server system that fails to boot after a Windows Update. The processIt uses Windows Recovery Environment (WinRE) and DISM to revert or remove problematic updates.
Tested tutorial applies towith Windows Server 20192019. butThe process is similarnearly identical for Server 2016 / 2022.
Prerequisites
Step 1 — ObtainBoot into Windows InstallationRecovery MediaEnvironment
- Download the correct Windows Server ISO
matchingfromyourMicrosoft.OS version.Search for:Search: "Windows Server 2019Evaluation"Evaluation ISO"
Note: If theWindows serveralready entered aautomatic recovery loopafter aftermultiple failed boots, ityou may automaticallysee showthis the recovery screenmenu without external media.
Step 2 — EnterUnlock WindowsBitLocker Recovery(If EnvironmentEnabled)
If
manage-bde computer-status
Replace
drive letter and recovery key as needed.Step 3 — Identify the Windows Installation Drive Letter
In recovery mode, thedrive systemletters change. The OS drive mayis notoften beNOT C:.
diskpart
mustlist locatevolume
exit
Note the volume containing the Windows installation manually.folder.
dir C:
dir D:
dir E:
Look for a folder named Windows. Whichever drive contains it is your OS drive.
Example: Windows foundlocated on D:\
Step 4 — Check Disk Integrity (Recommended)
Before touching updates, verify filesystem health:
chkdsk D: /f
Replace D: with your OS drive.
Step 5 — Revert Pending Windows Updates
RunThis DISM to cancelcancels unfinished update operations:operations.
dism /image:D:\ /cleanup-image /revertpendingactions
Replace D:\ with your actual Windows drive.
This process may take several minutes if updates were pending.minutes.
When complete:
- Close Command Prompt
If Windows boots successfully, stop here.
Step 6 — Remove a Fully Installed Broken Update
If Windows crashes after login or loops during boot, the update must be manually removed.
List Installed Packages
dism /image:D:\ /get-packages
Recent updates appear near the bottom.
Remove a Package
dism /image:D:\ /remove-package /packagename:PACKAGE_NAME
Tip: Highlight package → right-click to copy → right-click to paste.
Remove updates one at a time and reboot between attempts.
Step 7 — Repair Boot Configuration (If System Still Won’t Start)
If the system fails before Windows loads, repair the bootloader:
bootrec /fixmbr
bootrec /fixboot
bootrec /scanos
bootrec /rebuildbcd
If /fixboot returns Access Denied:
bootsect /nt60 sys
Step 8 — Run System File Check Offline
Scan for corrupted Windows files:
sfc /scannow /offbootdir=D:\ /offwindir=D:\Windows
Step 9 — Final Reboot
Troubleshooting Notes
diskpart → attributes disk clear readonly
If BitLocker relocks: unlock again
If updates reinstall automatically: pause Windows Update after recovery
Summary
This procedure resolves most Windows Update boot failures without reinstalling the operating system.