0x0000007A

Fix 'System Service Dependency Failure' in Windows 10/11

Windows Errors Intermediate 👁 8 views 📅 Jun 25, 2026

This error stops Windows from booting. I've seen it on HP and Dell PCs after Windows updates. The fix is usually repairing corrupted system files in Safe Mode.

Quick Answer (for advanced users)

Boot into Safe Mode with Command Prompt, then run sfc /scannow followed by DISM /Online /Cleanup-Image /RestoreHealth. After that, use System Restore to roll back recent changes. If Safe Mode won't load, use a Windows installation USB to access Command Prompt.

Why You See This Error

Windows gives you a blue screen with the stop code 0x0000007A (System Service Dependency Failure). This usually happens after a Windows update, a driver install, or when a critical system file gets corrupted. It's not a hardware problem 90% of the time. It's a software mess that Windows can't fix on its own.

I've seen this on HP Pavilion laptops after a failed Windows 11 23H2 update, and on Dell Optiplex desktops after a driver rollback went bad. The system tries to boot, hits a broken driver or service, and throws this error. It loops back to the login screen or stays on the blue screen.

How to Fix It (Step by Step)

Step 1: Boot into Safe Mode

  1. Turn your PC on and off three times — when you see the Windows logo, hold the power button until it shuts down. Do this again. On the third restart, Windows should show the Automatic Repair screen.
  2. Select Troubleshoot > Advanced Options > Startup Settings > Restart.
  3. When your PC restarts, press 5 or F5 for Safe Mode with Networking.

If that doesn't get you into Safe Mode, use a Windows installation USB and on the first screen click Next, then Repair your computer > Troubleshoot > Advanced Options > Command Prompt.

Step 2: Run System File Checker (SFC)

  1. Open Command Prompt as Administrator (if in Safe Mode, type cmd in the search bar, right-click, and choose Run as Admin).
  2. Type sfc /scannow and press Enter. Wait. This takes 15-20 minutes. Don't close the window.
  3. When it finishes, you'll see a message saying either no issues found or some files were repaired.

Step 3: Run DISM to Fix System Image

  1. Still in Command Prompt, type DISM /Online /Cleanup-Image /RestoreHealth and press Enter.
  2. Let it run. This can take 30 minutes. It connects to Windows Update to download fresh system files. If your internet isn't working in Safe Mode, it'll use local files instead.
  3. After it finishes, restart your PC normally and see if the error is gone.

Step 4: Use System Restore

System Restore undoes recent changes — updates, drivers, registry edits — without touching your files.

  1. Boot into Safe Mode again, or use the Windows installation USB route.
  2. Go to Troubleshoot > Advanced Options > System Restore.
  3. Pick a restore point from before the error started. Usually one from a week ago works. Click Next, then Finish.
  4. Wait for it to work. Your PC will restart. Check if it boots normally.

If the Main Fix Doesn't Work

Sometimes SFC or DISM fails because the system is too broken. Here are other ideas.

Alternative 1: Boot into Last Known Good Configuration

  1. Restart your PC and spam the F8 key before Windows loads. On Windows 10/11 you might have to force a shutdown twice to see the menu.
  2. Choose Last Known Good Configuration (Advanced).
  3. If Windows boots, immediately uninstall the latest Windows update or driver that caused the issue.

Alternative 2: Disable Non-Microsoft Services in Safe Mode

  1. Boot into Safe Mode (Step 1 above).
  2. Press Win + R, type msconfig, and press Enter.
  3. Go to the Services tab, check Hide all Microsoft services, then click Disable all.
  4. Go to the Startup tab and click Open Task Manager. Disable everything listed.
  5. Restart normally. If it boots, one of those services or startup programs was the problem. Enable them one by one to find the bad one.

Alternative 3: Use Startup Repair

  1. Boot from a Windows installation USB, click Repair your computer.
  2. Go to Troubleshoot > Advanced Options > Startup Repair.
  3. Let it diagnose and fix. It sometimes takes two runs to work properly.

Prevention Tips

  • Don't skip Windows updates, but wait a week before installing the big ones (like 23H2 or 24H2). Let early adopters find the bugs first.
  • Make restore points manually before installing drivers or software. Type create a restore point in the Start menu, click Create.
  • Keep a Windows installation USB on a thumb drive — it saves you when boot loops happen. Use the Media Creation Tool from Microsoft's site.
  • Check your disk for errors every few months. Open Command Prompt as Admin and type chkdsk C: /f. It fixes minor file system problems before they cause big crashes.

This fix worked for me every time I saw this error on HP Envy and Dell XPS models. The key is Safe Mode — it lets Windows load without the broken driver. If Safe Mode won't start, the USB method always does.

Was this solution helpful?