Hello
Thank you for posting in Q&A forum.
The error code "0x800f0838" you're encountering after slipstreaming Windows 11 patches typically indicates issues with dependencies or the Windows servicing stack.
Here are some steps you can try:
- Make sure there is enough disk space available to install the updates. You can use Disk Cleanup to free up space or extend the C: partition if necessary.
- Use the built-in Windows Update Troubleshooter to detect and fix issues related to Windows updates. Go to Settings > Update & Security > Troubleshoot > Additional troubleshooters and select Windows Update.
- Reset Windows Update Components:
Open Command Prompt as an administrator and run the following commands:
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
After running these commands, try updating again.
- Use DISM Tool:
Run the following command in Command Prompt as an administrator:
DISM /Online /Cleanup-Image /RestoreHealth
After the process completes, restart your computer and try updating again.
- If the above steps do not work, you can try manually downloading and installing the updates from the Microsoft Update Catalog. Search for the specific KB numbers and download the appropriate files for your system.
- If you have installed any Features On Demand or language packs, they might be causing the issue. Try removing them temporarily and then attempt the update again.
I hope the information above is helpful.
If you have any questions or concerns, please feel free to let us know.
Best Regards,
Daisy Zhou
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.