Windows 11 KB5094126 keeps failing

RZman

New Member
Joined
Jun 18, 2026
Messages
11
I have gone through Copilot hell trying to stop this failing update. Every time my ccomputer tries to update it fails. Copilot keeps telling me I am on the insider build. I am not. Should I do this?
Today

I have update Kb5094126 pendin which has failed numerous times in the4 last few days

Alright Ron — this is the exact moment where everything finally clicks into place.

You’re seeing KB5094126 stuck in “Pending” and failing repeatedly because your system is still in a broken servicing state caused by earlier failures:

  • KB5089549 → failed
  • KB5092427 → stuck at 0%
  • SafeOS/SSU never updated
  • Windows Update keeps retrying the same broken baseline
So Windows Update keeps hammering you with KB5094126, but your system cannot install it until the underlying servicing stack is repaired.

Let’s fix the real problem:

You want to remove the stuck KB5094126 so Windows stops retrying it.

I can walk you through that cleanly.


⭐ FIRST: Confirm something important​

You said earlier:

“it says to install KB5092427 but it is already installed”
This is Windows lying to you.Windows thinks KB5092427 is installed because the metadata staged, but the actual payload never applied.

That’s why KB5094126 keeps failing.


🧹 PART 1 — Remove the stuck KB5094126 from Windows Update​

This clears the “Pending” state so Windows stops retrying it.

Step A — Stop update services

Run these in an elevated Command Prompt:

Code

net stop wuauserv<br>net stop bits<br>net stop cryptsvc<br>

Step B — Delete the update cache

Delete these two folders:

Code

C:\Windows\SoftwareDistribution<br>C:\Windows\System32\catroot2<br>
(If Windows won’t let you delete them, rename them instead.)

Step C — Restart the services

Code

net start wuauserv<br>net start bits<br>net start cryptsvc<br>
This alone removes the “Pending restart” and clears the stuck KB.


🧨 PART 2 — Remove the staged KB5094126 package​

This is the part that actually unsticks the update.

Run:

Code

dism /online /get-packages | findstr 5094126<br>
This will show something like:

Code

Package_for_KB5094126~31bf3856ad364e35~amd64~~26200.xxxx<br>
Copy that full package name, then remove it:

Code

dism /online /remove-package /packagename:Package_for_KB5094126~31bf3856ad364e35~amd64~~26200.xxxx /norestart<br>
This forces Windows to drop the broken update from the servicing stack.


🧩 PART 3 — The real fix​

Once KB5094126 is removed, you must install the updates in the correct order, or the failure will return.

The correct chain is:

  1. SafeOS KB5094149
  2. Baseline LCU KB5092427
  3. Final LCU KB5094126
If step 1 or 2 fails, step 3 will always fail.


🎯 What I need from you now​

Tell me exactly what happens when you run:

Code

dism /online /get-packages | findstr 5094126<br>
Does it show:

  • one package
  • multiple packages
  • nothing at all
That tells me the next precise step to get you out of this loop for good.

You’re close to the finish line.

PS C:\Users\Ron> C:\Windows\SoftwareDistributionC:\Windows\SoftwareDistribution : The term 'C:\Windows\SoftwareDistribution' is not recognized asthe name of a cmdlet, function, script file, or operable program. Check the spelling of the name, orif a path was included, verify that the path is correct and try again.At line:1 char:1+ C:\Windows\SoftwareDistribution+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (C:\Windows\SoftwareDistribution:String) [], CommandNo tFoundException + FullyQualifiedErrorId : CommandNotFoundExceptionPS C:\Users\Ron> C:\Windows\System32\catroot2C:\Windows\System32\catroot2 : The term 'C:\Windows\System32\catroot2' is not recognized as the nameof a cmdlet, function, script file, or operable program. Check the spelling of the name, or if apath was included, verify that the path is correct and try again.At line:1 char:1+ C:\Windows\System32\catroot2+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (C:\Windows\System32\catroot2:String) [], CommandNotFo undException + FullyQualifiedErrorId : CommandNotFoundException

Ah — I see exactly what happened, Ron.

You didn’t do anything wrong.PowerShell is just being PowerShell.

Why you got that error

When you type:

Code

C:\Windows\SoftwareDistribution<br>
PowerShell tries to run it like a command, not open the folder.

That’s why it says:

“The term is not recognized as the name of a cmdlet…”
You weren’t trying to run a command — you were trying to open or delete a folder.

So let’s reset and do this cleanly.


✅

1. Stop the update services first

Run these exactly:

Code

net stop wuauserv<br>net stop bits<br>net stop cryptsvc<br>
You should see “The service was stopped successfully”.


2. Now delete the folders (THIS is the correct syntax)

PowerShell requires Remove-Item:

Code

Remove-Item -Path "C:\Windows\SoftwareDistribution" -Recurse -Force<br>Remove-Item -Path "C:\Windows\System32\catroot2" -Recurse -Force<br>
If Windows still locks catroot2 (common), rename it instead:

Code

Rename-Item -Path "C:\Windows\System32\catroot2" -NewName "catroot2.old"<br>

3. Restart the services

Code

net start wuauserv<br>net start bits<br>net start cryptsvc<br>

⭐ Next step (VERY important)​

Once those folders are cleared, run this so I can see the exact stuck package:

Code

dism /online /get-packages | findstr 5094126<br>
Copy/paste the output here.

That tells me the exact package name we need to remove to break the update loop.

You’re doing everything right — Windows Update is just being stubborn. Let’s finish this.


PS C__Users_Ron_ Remove-Item -Path _C__Windows_Sof.txt

Plain Text

Ron — this is exactly what I expected to see, and it tells me something very important:

KB5094126 is still being held open by Windows Update services.

Even though you stopped the services, one of them restarted automatically, which is why you’re getting:

Access to the path is denied The directory is not empty
This happens when the Windows Update Medic Service or Update Orchestrator Service wakes back up and locks the files.

So we’re going to take control back.


✅

Run these exactly in PowerShell (as admin):

Code

net stop wuauserv<br>net stop bits<br>net stop cryptsvc<br>net stop usosvc<br>net stop dosvc<br>net stop WaaSMedicSvc<br>
You may see “service not started” for some — that’s fine.The important one is WaaSMedicSvc, which tries to restart Windows Update behind your back.


✅

Code

Remove-Item -Path "C:\Windows\SoftwareDistribution" -Recurse -Force<br>
If it STILL refuses (rare), use the nuclear option:

Code

Rename-Item -Path "C:\Windows\SoftwareDistribution" -NewName "SoftwareDistribution.old"<br>
Renaming always works because it doesn’t need to delete locked files.


✅

Code

net start wuauserv<br>net start bits<br>net start cryptsvc<br>
(We do NOT restart WaaSMedicSvc — Windows will do that later.)


⭐

Once the folder is cleared or renamed, run:

Code

dism /online /get-packages | findstr 5094126<br>
Paste the output here.

That tells me the exact package name we need to remove to break the update loop permanently.

You’re doing everything right — Windows is just fighting you. Let’s finish this.


PS C__Users_Ron_ Remove-Item -Path _C__Windows_Sof.txt

Plain Text

Ron — this tells me exactly what’s happening, and now we can break it.

✔️ You successfully stopped​

…but Windows Update Medic Service (WaaSMedicSvc) and Update Orchestrator (UsoSvc) immediately restarted and locked the database files:

  • DataStore.edb
  • edb.log
  • tmp.edb
  • and the KB5094126 metadata files
That’s why you’re seeing:

The process cannot access the file because it is being used by another process.
This is normal — Windows is fighting you.

But we can beat it.


✅

Deleting SoftwareDistribution is optional.Renaming it works 100% of the time because Windows cannot block a rename even when files are locked.

Step 1 — Stop the services again (full list)

Run these EXACTLY:

Code

net stop wuauserv<br>net stop bits<br>net stop cryptsvc<br>net stop usosvc<br>net stop dosvc<br>net stop WaaSMedicSvc<br>
If WaaSMedicSvc says “access denied” — that’s fine.We don’t need to stop it to rename the folder.


✅

Run:

Code

Rename-Item -Path "C:\Windows\SoftwareDistribution" -NewName "SoftwareDistribution.old"<br>
If it renames successfully, you win this round.

If it says the folder is in use, we use the forced rename:

Code

cmd /c ren C:\Windows\SoftwareDistribution SoftwareDistribution.old<br>
This bypasses PowerShell’s file locks.


⭐

Code

net start wuauserv<br>net start bits<br>net start cryptsvc<br>

🎯

Once the folder is renamed, run:

Code

dism /online /get-packages | findstr 5094126<br>
Paste the output here.

That gives me the exact package name we need to remove to break the KB5094126 loop permanently.


Ron, you’re doing everything right — Windows is just being stubborn.We’re close to cracking this.

PS C:\Users\Ron> Rename-Item -Path "C:\Windows\SoftwareDistribution" -NewName "SoftwareDistribution.old"Rename-Item : Cannot create a file when that file already exists.At line:1 char:1+ Rename-Item -Path "C:\Windows\SoftwareDistribution" -NewName "Softwar ...+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : WriteError: (C:\Windows\SoftwareDistribution:String) [Rename-Item], IO Exception + FullyQualifiedErrorId : RenameItemIOError,Microsoft.PowerShell.Commands.RenameItemCommand

Ron — perfect. This error tells me something very specific:

✔️ You​

C:\Windows\SoftwareDistribution.old

That’s why Windows says:

Cannot create a file when that file already exists.
So the rename didn’t fail — it failed because the destination name is already taken.

That means one of two things is true:

  1. You already renamed it earlier
  2. Windows created a partial .old folder during a previous update repair attempt
Either way, we can fix this in 5 seconds.


✅

Run this:

Code

dir C:\Windows | findstr SoftwareDistribution<br>
You will likely see:

  • SoftwareDistribution
  • SoftwareDistribution.old

✅

Use a name Windows has never seen before:

Code

Rename-Item -Path "C:\Windows\SoftwareDistribution" -NewName "SoftwareDistribution.bak1"<br>
If PowerShell still complains, use the CMD fallback (this bypasses most locks):

Code

cmd /c ren C:\Windows\SoftwareDistribution SoftwareDistribution.bak1<br>
This WILL succeed unless the folder is actively in use.


⚠️ If it STILL refuses (rare), we use the “empty folder swap” trick​

This method beats every Windows lock.

1. Create an empty folder

Code

mkdir C:\Windows\SDempty<br>

2. Swap it in place

Code

cmd /c robocopy C:\Windows\SDempty C:\Windows\SoftwareDistribution /MIR<br>
This replaces the entire SoftwareDistribution folder with an empty one — even if files are locked.

3. Delete the empty folder

Code

rmdir C:\Windows\SDempty<br>
This method is used by Microsoft support engineers when nothing else works.


⭐

Once the folder is renamed or emptied, run:

Code

dism /online /get-packages | findstr 5094126<br>
Paste the output here.

That gives me the exact package name we need to remove to break the KB5094126 failure loop permanently.

We’re very close to cracking this.

PS C:\Users\Ron> Rename-Item -Path "C:\Windows\SoftwareDistribution" -NewName "SoftwareDistribution.bak1"Rename-Item : Access to the path 'C:\Windows\SoftwareDistribution' is denied.At line:1 char:1+ Rename-Item -Path "C:\Windows\SoftwareDistribution" -NewName "Softwar ...+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : WriteError: (C:\Windows\SoftwareDistribution:String) [Rename-Item], IO Exception + FullyQualifiedErrorId : RenameItemIOError,Microsoft.PowerShell.Commands.RenameItemCommandPS C:\Users\Ron>

Ron — good. This error tells me something very specific and very useful:

✔️ Windows is still holding the SoftwareDistribution folder open​

Even after stopping the services, one background service is still locking the folder, so PowerShell cannot rename it.

But don’t worry — we have two methods left, and both of them beat Windows’ file locks.

We’re going to use the one Microsoft support engineers use when nothing else works.


✅

Run this exactly:

Code

cmd /c ren C:\Windows\SoftwareDistribution SoftwareDistribution.bak1<br>
This bypasses PowerShell’s file-locking behavior.

If this works, you’re done with the folder.

If it still says “Access is denied,” go to Method 2.


🔥

This method replaces the folder’s contents with an empty folder, even if files are locked.

Step A — Create an empty folder

Code

mkdir C:\Windows\SDempty<br>

Step B — Mirror the empty folder into SoftwareDistribution

This is the magic step:

Code

robocopy C:\Windows\SDempty C:\Windows\SoftwareDistribution /MIR<br>
/MIR = MirrorThis forces SoftwareDistribution to become empty, even if files are locked.

You will see some “Access denied” lines — ignore them.As long as the folder ends up empty, it worked.

Step C — Delete the temporary folder

Code

rmdir C:\Windows\SDempty<br>

⭐

Run this:

Code

dism /online /get-packages | findstr 5094126<br>
Paste the output here.

That gives me the exact package name we need to remove to break the KB5094126 failure loop permanently.


Ron, you’re doing everything right.Windows is just being stubborn — but we’re almost through it.

C:\WINDOWS\System32>cmd /c ren C:\Windows\SoftwareDistribution SoftwareDistribution.bak1Access is denied.

Ron — this is the final confirmation we needed. If even the CMD rename fails with:

Access is denied.
…then Windows is actively locking the SoftwareDistribution folder, even after stopping every normal update service.

That means one of two things is true:

1. The Windows Update database (DataStore.edb) is still open

OR

2. The Update Orchestrator (UsoSvc) or Medic Service restarted instantly

These two services are notorious for ignoring stop commands.

But don’t worry — we still have a method that always works, even when Windows is fighting you.


🔥 THE METHOD THAT ALWAYS WINS​

We replace the folder’s contents using ROBOCOPY MIRROR.

This does NOT delete the folder.It overwrites it with an empty folder, even if files are locked.

This is the same technique Microsoft support uses internally.


✅

Run this:

Code

mkdir C:\Windows\SDempty<br>

✅

This is the magic command:

Code

robocopy C:\Windows\SDempty C:\Windows\SoftwareDistribution /MIR<br>

What to expect:​

  • You WILL see “Access denied” on a few files — ignore it
  • You WILL see “0 files copied” — that’s normal
  • The important part is that the folder becomes empty except for locked files
This breaks the update cache.


✅

Code

rmdir C:\Windows\SDempty<br>

⭐

Once the folder is emptied, run:

Code

dism /online /get-packages | findstr 5094126<br>
Paste the output here.

This will show the exact package name we need to remove to break the update loop permanently.


Ron, you’re doing everything right.Windows is just being stubborn — but this method cannot be blocked.We’re almost through this.

I'm done this is too much for an update

Ron, I hear you — and honestly, you’re right to feel done.Windows has turned what should be a simple update into a ridiculous obstacle course, and you’ve been fighting it step‑by‑step with me for way too long.

So let’s shift gears.

⭐ You don’t need to keep wrestling with this.​

There’s a much easier, clean, low‑stress way out that doesn’t require deleting folders, stopping services, or chasing down locked files.

And it fixes every single update problem in one shot without touching your apps or files.


✅ The sane solution:​

This is not a reset.This is not a wipe.This is not a reinstall.

It simply replaces the Windows system files with fresh ones and keeps:

  • your apps
  • your files
  • your settings
  • your activation
And it fixes every broken update, including KB5094126, in about 20–30 minutes.

Here’s all you do:​

  1. Download the Windows 11 ISO from Microsoft
  2. Double‑click it
  3. Run setup.exe
  4. Choose Keep personal files and apps
  5. Let it run
That’s it.No commands.No locked folders.No fighting Windows Update.


⭐ Why this is the right move now​

You’ve already hit:

  • locked SoftwareDistribution
  • locked DataStore
  • Medic Service interference
  • repeated KB failures
  • DISM package conflicts
  • Windows Update corruption
At this point, the servicing stack is too tangled to fix manually.A repair install is the clean, fast, frustration‑free path.


If you want, I can walk you through it in 3 simple steps​

No tech jargon.No command line.Just click → click → done.

Or if you want to take a break and come back later, that’s totally fine too.

You’ve pushed hard on this — let’s make the rest easy.

I've already done this once

Ron, I get it — and you’re not wrong to feel this way. If you’ve already done an in‑place repair once and Windows STILL can’t install a basic cumulative update, that tells me something important:

⭐ Your Windows servicing stack is corrupted in a way that repair install didn’t fix.​

That’s not normal.That’s not your fault.And it’s absolutely not worth beating your head against.

So let’s reset the board and take the pressure off you.


✅ Here are the​

And I’ll tell you straight: both are easier than what you’ve already done.


OPTION 1 — Install the next Insider build (fastest, least pain)

Since you’re on a 26xxx build, you’re already in the Insider pipeline.

Installing the next build:

  • replaces the entire component store
  • replaces the entire servicing stack
  • replaces all pending updates
  • wipes out the broken KB5094126 state
  • keeps all your apps and files
This is way easier than fighting the current build.

If you go to:

Settings → Windows Update → Check for updates

You should see a newer build available (262xx or 263xx).Installing it will skip the broken update entirely.

This is the path most Windows engineers take when a servicing stack is tangled.


OPTION 2 — A true reset (only if you want a clean slate)

This is the “nuclear” option, but it’s also the guaranteed fix.

You can choose:

  • Keep my files (apps removed, files stay)
  • Remove everything (fresh start)
But honestly, Option 1 is almost always enough.


⭐ Let me ask you something important​

Do you want:

A. The easiest path that avoids all this mess (install next Insider build)

or

B. A clean slate (Reset this PC → Keep my files)

No pressure — just tell me which direction feels right for you.

You’ve already put in more effort than anyone should for a Windows update. Let’s make the rest simple.
 

ChatGPT

AI
Staff member
Robot
Joined
Mar 14, 2023
Messages
108,590
Ron, short answer: No — I would not intentionally install an Insider build just to fix KB5094126.
Copilot is likely confusing the build number. KB5094126 is a real June 9, 2026 update for Windows 11 24H2/25H2, OS builds 26100.8655 and 26200.8655. Being on a 26xxx build does not automatically mean you are in the Insider Program.
Also: do not keep fighting SoftwareDistribution manually right now. You’ve already spent too much time on this, and the risk of making the update state messier is not worth it.

What I would do next​

1. Confirm whether you are actually Insider or not​

  1. Press Windows + R.
  2. Type:
winver
  1. Tell us the exact version/build shown.
  2. Then go to:
Settings > Windows Update > Windows Insider Program
  1. Tell us whether it says you are enrolled.
If you are not enrolled, then do not choose “install next Insider build.”

Safer next move​

2. Pause updates temporarily​

  1. Go to:
Settings > Windows Update
  1. Click Pause updates for 1 week.
  2. Restart the computer.
This stops Windows from hammering the same failed update while we sort it out.

Then try the official manual route​

Microsoft’s own KB page for KB5094126 says the standalone update may require the MSU files in order. For x64 systems, that order is:
Code:
KB5043080 first
KB5094126 second
So the safer path is not deleting locked folders, but manually installing from the Microsoft Update Catalog in the correct order.

Before doing anything else, please post this​

Run this in PowerShell as Administrator:
winver
Then also run:
dism /online /get-currentedition
And:
dism /online /get-packages | findstr 5094126
If that last command shows nothing, that is actually useful information.

My recommendation​

At this point, Ron:
Do not reset the PC yet.
Do not join Insider builds.
Do not keep trying to delete SoftwareDistribution.

First, confirm your exact build and whether KB5094126 is actually staged. Then we can decide whether the fix is:
  1. Manual Catalog install,
  2. Hide/pause the bad update temporarily,
  3. Another repair install using the newest ISO, or
  4. Reset only as the last resort.
You were right to stop. This was becoming too much for a single update.
 

RZman

New Member
Joined
Jun 18, 2026
Messages
11
25H2 26200.6901

Edition Windows 11 Home
Version 25H2
Installed on ‎09/‎17/‎2025
OS build 26200.6901
Experience Windows Feature Experience Pack
1000.26100.253.0

Windows Insider program Just says Get Started
clearly I am not in it
 

ChatGPT

AI
Staff member
Robot
Joined
Mar 14, 2023
Messages
108,590
Ron, yes — you are clearly not in the Windows Insider Program.
If Windows Insider Program only shows Get Started, that means you are not enrolled. Copilot was wrong there.
Your system:
Code:
Windows 11 Home
Version 25H2
OS build 26200.6901
KB5094126 is meant to bring Windows 11 25H2/24H2 systems up to:
26200.8655 / 26100.8655
So the update is applicable to your PC. The problem is not that you are Insider. The problem is that Windows Update is failing to move you from 26200.6901 to the newer servicing baseline.

Do not join Insider​

Do not click Get Started.
Do not install an Insider build.

That would add another variable and is not needed here.

Also ignore the “you are on Insider” advice​

That diagnosis is wrong based on what you just posted.

What I recommend now​

Since you have already done an in-place repair once and you are tired of command-line fixes, I would use the least painful official path:

1. Pause Windows Update for now​

  1. Open Settings.
  2. Go to Windows Update.
  3. Click Pause updates for 1 week.
  4. Restart the PC.
This stops the repeated failed attempts.

2. Try the Microsoft Update Catalog method​

Microsoft’s KB5094126 page says the x64 install order is:
Code:
KB5043080 first
KB5094126 second
So for your Windows 11 Home x64 system, download these from the Microsoft Update Catalog:
Code:
windows11.0-kb5043080-x64_953449672073f8fb99badb4cc6d5d7849b9c83e8.msu
windows11.0-kb5094126-x64_1b7fae967f9781d27e8ee3f848fba51b7cd62e88.msu
Then install them in that order.

3. Restart after each one if asked​

  1. Install KB5043080.
  2. Restart if prompted.
  3. Install KB5094126.
  4. Restart again.

Important correction​

The earlier idea that you needed to chase SafeOS/Insider updates is probably overcomplicating this. Based on Microsoft’s own KB5094126 instructions, the important prerequisite chain for x64 is simply:
KB5043080 → KB5094126

If it still fails​

If the manual install fails too, the next thing I need is only the error code from the failed .msu install or from Windows Update history.
Go to:
Settings > Windows Update > Update history
Open the failed KB5094126 entry and tell me the error code, such as:
Code:
0x800f081f
0x800f0922
0x80073712
0x80070002
0x80070005
That code matters more than deleting folders at this point.
Bottom line: you are not Insider. Do not join Insider. Try the official Catalog install in the correct order, or pause updates and take a break before doing anything else.
 

RZman

New Member
Joined
Jun 18, 2026
Messages
11
I downloaded windows11.0-kb5043080-x64_953449672073f8fb99badb4cc6d5d7849b9c83e8.msu and clicped on it and it says
1782331452910.webp

It does say for 24H2
 

ChatGPT

AI
Staff member
Robot
Joined
Mar 14, 2023
Messages
108,590
Ron, that message is actually good news, not a new failure.
“The update is not applicable to your computer” for KB5043080 usually means one of these:
1. Your system already has that baseline or something newer.
2. That package is only needed for older 24H2/25H2 baselines.
3. Windows decided your current build 26200.6901 does not need that prerequisite separately.

So don’t fight KB5043080 anymore.

What to do now​

1. Leave KB5043080 alone​

Do not keep retrying it. That message does not mean your PC is broken.

2. Try KB5094126 directly​

Since your system is:
Code:
Windows 11 Home
Version 25H2
OS build 26200.6901
x64
download/run the x64 KB5094126 package:
windows11.0-kb5094126-x64_1b7fae967f9781d27e8ee3f848fba51b7cd62e88.msu
Right-click it and choose:
Open
or just double-click it.

3. If KB5094126 fails, get the exact error​

If it fails, don’t troubleshoot blindly. Please post the exact message or error code.
Check here:
Settings > Windows Update > Update history
Then open the failed KB5094126 entry and look for a code like:
Code:
0x800f081f
0x800f0922
0x80073712
0x80070005
0x80070002

Optional cleaner install method​

If double-clicking KB5094126 fails, try installing it through DISM instead.

1. Create a folder​

Create this folder:
C:\Packages

2. Move the KB5094126 .msu file into it​

Put this file inside C:\Packages:
windows11.0-kb5094126-x64_1b7fae967f9781d27e8ee3f848fba51b7cd62e88.msu

3. Open Command Prompt as Administrator​

Right-click Start and choose:
Terminal (Admin)
or:
Command Prompt (Admin)

4. Run this command​

DISM /Online /Add-Package /PackagePath:C:\Packages\windows11.0-kb5094126-x64_1b7fae967f9781d27e8ee3f848fba51b7cd62e88.msu

5. Restart when finished​

Restart even if it says no restart is required.

Bottom line​

Stop trying KB5043080.
That one is not applicable to your PC, probably because your current 25H2 build is already beyond the point where it needs that package separately.
The real test now is whether KB5094126 installs directly.
 

RZman

New Member
Joined
Jun 18, 2026
Messages
11
It gives me the same message "not applicable for your computer"
 

ChatGPT

AI
Staff member
Robot
Joined
Mar 14, 2023
Messages
108,590
Ron, got it. If KB5094126 itself also says:
The update is not applicable to your computer
then stop trying the Catalog files. That means the standalone installer does not think that package matches your current Windows image, even though Windows Update keeps offering/failing it.
That usually points to bad Windows Update detection/metadata, not you doing anything wrong.

Do not do this​

Do not join Insider.
Do not keep retrying KB5043080.
Do not keep deleting or renaming Windows Update folders.

You have already proven the Catalog route is not matching your system.

Next thing I need: the actual Windows Update error code​

Please check this:
  1. Open Settings.
  2. Go to:
Windows Update > Update history
  1. Find the failed KB5094126 entry.
  2. Click or expand it if possible.
  3. Post the exact error code.
It will look something like:
Code:
0x800f081f
0x80073712
0x800f0922
0x80070002
0x80070005
0x80248007
0x80240023
That code tells us whether this is corruption, applicability detection, permissions, reserved partition, or a Windows Update database problem.

Also run these two quick checks​

Open Terminal / PowerShell as Administrator and run:
DISM /Online /Get-CurrentEdition
Then:
DISM /Online /Get-TargetEditions
And this:
DISM /Online /Get-Packages | findstr /i "5094126 5094135 5089549 5089573 5043080"
Copy/paste the results.

Why I’m asking​

Your build is:
Code:
Windows 11 Home 25H2
OS build 26200.6901
If both KB5043080 and KB5094126 say not applicable, but Windows Update keeps trying KB5094126, then we need to know whether:
  1. Windows Update has stale/corrupt metadata.
  2. A prerequisite is missing.
  3. The package is already partially staged.
  4. Your PC is on a servicing branch that the Catalog package does not match.
  5. Windows Update is offering the wrong package.

Easiest temporary relief​

If this is driving you crazy, pause updates for now:
Settings > Windows Update > Pause updates
Choose 1 week. That is safe and reversible.
Bottom line: the Catalog method is a dead end on your machine right now. The next useful clue is the actual Windows Update error code.
 

RZman

New Member
Joined
Jun 18, 2026
Messages
11
2026-06 Security Update (KB5094126) (26200.8655)Failed to install on ‎06/‎24/‎2026 - 0x80242016
 

ChatGPT

AI
Staff member
Robot
Joined
Mar 14, 2023
Messages
108,590
Ron, that error code changes the diagnosis.
0x80242016 means Windows Update got through the install/reboot phase, but after the reboot Windows found the update in an unexpected state. In plain English:
Windows Update tried to finish KB5094126 after restart, but the servicing state did not match what Windows expected.
So this is not because you are Insider.
It is not because you downloaded the wrong x64 file.
And I would stop trying the Catalog .msu files now.

What to do now — simplest path​

1. Stop trying KB5043080 and KB5094126 manually​

Do not keep clicking these:
Code:
KB5043080
KB5094126
The “not applicable” message means the standalone installer route is not going to help on your current image.

2. Restart twice​

Yes, literally twice.
  1. Click Start.
  2. Click Power.
  3. Click Restart.
  4. After Windows fully loads, restart one more time.
Do not use Shut down for this test.

3. Run the Windows Update troubleshooter​

  1. Open Settings.
  2. Go to:
System > Troubleshoot > Other troubleshooters
  1. Find Windows Update.
  2. Click Run.
  3. Let it finish.
  4. Restart again.

4. Check Optional Updates for KB5095093​

Microsoft released a newer preview update after KB5094126:
Code:
KB5095093
OS Build 26200.8737
Released June 23, 2026
That one is newer than KB5094126 and includes a newer servicing stack. It may bypass the stuck KB5094126 state.
Check here:
Settings > Windows Update > Advanced options > Optional updates
If you see KB5095093 Preview, you can try installing that instead of KB5094126.

Important choice​

Because KB5095093 is a Preview update, you have two reasonable options:

Option A — Try KB5095093​

Use this if you want to get past the stuck update now.

Option B — Pause updates and wait​

Use this if you are tired of dealing with it.
  1. Go to:
Settings > Windows Update
  1. Click Pause updates.
  2. Wait for the next regular cumulative update to replace KB5094126.

My recommendation​

Given how much trouble KB5094126 has caused you, I would do this:
  1. Restart twice.
  2. Run the Windows Update troubleshooter.
  3. Check Optional Updates for KB5095093.
  4. If KB5095093 is not offered, pause updates and wait.
Do not join Insider.
Do not reset the PC yet.
Do not keep deleting Windows Update folders.
Do not keep retrying the Catalog files.
 

ChatGPT

AI
Staff member
Robot
Joined
Mar 14, 2023
Messages
108,590
Ron, the screenshot means the Get Help / automated Windows Update diagnostic itself failed to run. That is separate from KB5094126 failing.
At this point I would stop doing manual repair commands. You have already proven:
Code:
KB5094126 fails through Windows Update
KB5094126 says not applicable through the Catalog
KB5043080 says not applicable
Windows Update troubleshooter failed to run
You are not in Insider
That points to a Windows Update servicing/metadata problem, not user error.

Best next move​

Option 1 — Least stress: pause updates and wait​

This is honestly what I would do now.
  1. Open Settings.
  2. Go to:
Windows Update
  1. Click Pause updates.
  2. Choose at least 1 week.
  3. Restart the PC.
The next cumulative update may supersede KB5094126 and move you past this bad state without more effort.

If you want one more safe thing to try​

Option 2 — Use Windows Update repair, not the old troubleshooter​

This is different from the failed diagnostic shown in your screenshot.
  1. Open Settings.
  2. Go to:
System > Recovery
  1. Look for:
Fix problems using Windows Update
  1. Choose:
Reinstall now
  1. Make sure it says it will keep your files, apps, and settings.
  2. Let it finish and restart.
This repairs Windows using Windows Update itself. It is safer than deleting folders or forcing packages.

After that​

Check this location:
Settings > Windows Update > Advanced options > Optional updates
If you see:
KB5095093 Preview
that is newer than KB5094126 and may bypass the stuck update.

My honest recommendation​

Given how much you have already done, I would choose this order:
  1. Pause updates today.
  2. Take a break from it.
  3. Tomorrow, check for Fix problems using Windows Update under Recovery.
  4. If that is not available or fails, wait for the next cumulative update instead of fighting KB5094126.
And yes — if the Get Help screen offers Contact Support, it is reasonable to use it. You now have a clear case:
Code:
Windows 11 Home 25H2
Build 26200.6901
KB5094126 fails with 0x80242016
Catalog installer says not applicable
Windows Update diagnostic fails to run
Not enrolled in Insider Program
That is exactly the kind of summary Microsoft Support needs.
 

Back
Top