0xc000021a after Windows Updates
If, after you apply Windows Updates and reboot your computer, you get a blue screen with code 0xc000021a here are a couple of things that you can try:
Corrupt Driver Signature Catalog Files
- When the systems boots up, press F8 repeatedly until you get the Advanced Boot Option Screen
- Choose the option "Disable Driver Signature Enforcement"
- If the system boots up then you most likely have corrupt driver signature catalog files. To check which drivers are not signed you can use sigverif
Corrupt Registry Entries
- When the systems boots up, press F8 repeatedly until you get the Advanced Boot Option Screen (or boot with a Windows DVD)
- Choose the Repair Your Computer option
- Open Command Prompt
- Replace the SYSTEM and SOFTWARE registry hives by running the following commands (assuming OsDrive as C:\ below but it may differ on your system):
- cd C:\Windows\System32\config
- ren SYSTEM SYSTEM.old
- ren SOFTWARE SOFTWARE.old
- copy C:\Windows\System32\config\RegBack\SYSTEM C:\Windows\System32\config\
- copy C:\Windows\System32\config\RegBack\SOFTWARE C:\Windows\System32\config\
- Reboot system
Comments
- Anonymous
October 03, 2017
Question is after applying windows Updates, why would there be reboot issues now and not before. Surely, Windows Update wouldn't allow unsigned drivers [excluding the corruption].- Anonymous
October 03, 2017
Hi Ed,You are correct. Unsigned drivers are not permitted. What I am trying to cover is a couple of steps to try in case corruption occurs after the updates are installed. We usually do not see it until we reboot.This is not to say that Updates can corrupt the registry of the signature files, but there may be other applications that can scan or change these files when we are installing the updates thus leading to the corruption. Most often I've seen AV software that quarantine or delete the signature files.
- Anonymous