Repair failed when attempting to add plugins(WHO SHOULD I TAG)

Jeff Giff 1 Reputation point
2022-05-13T02:28:00.527+00:00

I tried to install WSL2 on my computer but got the error 14098. I also attempted several updates, some of them returning 0x800f0905.

I use a dell, Windows 11 Home version.

I searched for help but among these tries, none worked:

  1. DISM RestoreHealth tells me that it couldn't find the source(0x800f081f).
  2. Then I got the Media Creation Tool W11, updated the system, and all previous updates have been fixed. However WSL2 still doesn't load, nor do later updates.
  3. I tried mounting: md c:\test\offline and using it as a source(also using install.esd and install.esd), but DISM simply ignores me.
  4. chkdsk, which runs after a restart, finishes scanning and tells nothing.
  5. sfc/scannow won't do a thing!

Please help. Thanks in advance!

Windows Hardware Performance
Windows Hardware Performance
Windows: A family of Microsoft operating systems that run across personal computers, tablets, laptops, phones, internet of things devices, self-contained mixed reality headsets, large collaboration screens, and other devices.Hardware Performance: Delivering / providing hardware or hardware systems or adjusting / adapting hardware or hardware systems.
1,641 questions
{count} votes

1 answer

Sort by: Most helpful
  1. MotoX80 34,761 Reputation points
    2022-05-14T16:15:19.143+00:00

    3) I tried mounting: md c:\test\offline and using it as a source(also using install.esd and install.esd), but DISM simply ignores me.

    This sequence worked on my Win10 test VM. I should note that my VM was not "broken".

    Mount the Windows iso that matches your OS version. Use the drive letter (I have F:) and desired folder name in the following commands.

    Find index of Win version

    dism /Get-WimInfo /WimFile:F:\sources\install.esd          
    

    Export the wim file using the correct index. (6 was win10 pro for me)

    dism /export-image /SourceImageFile:F:\sources\install.esd /SourceIndex:6 /DestinationImageFile:c:\temp\install.wim /Compress:max /CheckIntegrity
    

    Double check that the wim matches your OS.

    dism /Get-WimInfo /WimFile:c:\temp\install.wim
    

    Run the repair.

    Dism.exe /Online /Cleanup-Image /restoreHealth /source:c:\temp\install.wim 
    

    A reboot would likely be the next step followed by another run of IsWindowsHealty.bat.

    If that doesn't fix your OS then you will probably need to reinstall the OS.

    This site suggests that you can do an inplace upgrade. I have no idea if that will work or not. I didn't try it.

    https://www.techspot.com/guides/1764-windows-repair-keep-all-your-files-intact/

    You might have to do a reset.

    https://www.bing.com/search?q=windows%20reset%20this%20pc


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.