[SOLVED] Impossible to update windows 10 pro

Bnjroos

Member
Joined
Mar 18, 2022
Posts
5
I am unable to repair DISM and so update my windows 10 pro.
It always ends up with
Error: 0x800f081f

The source files could not be found.
Eventhough I specify a source from a mounted windows image (install.wim) or not.

I have run sfc /scannow but it seems it can't fix the issues.

It seems it cannot repair: certmgr.msc & certlm.msc of Microsoft-Windows-CertificateManagerSnapinDLL

Any idea how to fix it ? Attached is the CBS.log

Thank you in advance,
 

Attachments

Code:
DISM /Online /Cleanup-Image /RestoreHealth


The above command will not work if Windows Update service not working correctly. You will be prompted to use /source parameter to specify the location of the files that are require to restore the damage or missing files.

lgSdJee.jpg



The Install.wim is the source of where these corrupted or missing files located.
The Windows Imaging Format (WIM) is a file-based disk image format. It was developed by Microsoft to help deploy Windows Vista and subsequent versions of Windows operating system family.
The following command can be executed to extract corrupted or missing Windows Component Store files.

Code:
DISM  /Online  /Cleanup-Image   /RestoreHealth     /Source:WIM:X:\Sources\Install.wim:1    /LimitAccess

Replace the X:\Sources folder path with a folder path where Install.wim image file is stored.
The /LimitAcess parameter tells DISM utility to not to use Windows Update service to retrieve corrupted or missing files.
The /Index parameter tells DISM utility to retrieve the corrupted or missing files from which edition of Windows OS. The Install.wim file can contain more than one edition of the Windows OS. You can execute following command to found out index number of your Windows OS edition that you want to repair.

Code:
Dism  /Get-WimInfo  /Wimfile:"L:\sources\install.wim"

34j6bVp.jpg


Replace the L:\sources with directory path where Install.wim stored. As you can see there is two editions of Windows 10 and all have index number.
 
Hi Freebooter, thank you for the feedback, I already tried all that and still get the same result.
2022-03-18_16-57-34.png

And I still get the same result:

image_2022-03-18_170634.png

Any idea ?
 
Rich (BB code):
2022-03-18 11:50:03, Info                  CSI    00000299 [SR] Cannot repair member file [l:11]'certmgr.msc' of Microsoft-Windows-CertificateManagerSnapinDLL, version 10.0.18362.1316, arch Host= amd64 Guest= x86, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
2022-03-18 11:50:03, Info                  CSI    0000029a [SR] Cannot repair member file [l:10]'certlm.msc' of Microsoft-Windows-CertificateManagerSnapinDLL, version 10.0.18362.1316, arch Host= amd64 Guest= x86, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
2022-03-18 11:50:03, Info                  CSI    0000029b [SR] Cannot repair member file [l:11]'certmgr.msc' of Microsoft-Windows-CertificateManagerSnapinDLL, version 10.0.18362.1316, arch Host= amd64 Guest= x86, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
2022-03-18 11:50:03, Info                  CSI    0000029c [SR] This component was referenced by [l:124]'Microsoft-Windows-Client-Features-WOW64-Package0011~31bf3856ad364e35~amd64~~10.0.18362.1500.75a304f2c4e55752c10e3233547a87e9'
2022-03-18 11:50:03, Info                  CSI    0000029d [SR] Cannot repair member file [l:10]'certlm.msc' of Microsoft-Windows-CertificateManagerSnapinDLL, version 10.0.18362.1316, arch Host= amd64 Guest= x86, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
2022-03-18 11:50:03, Info                  CSI    0000029e [SR] This component was referenced by [l:124]'Microsoft-Windows-Client-Features-WOW64-Package0011~31bf3856ad364e35~amd64~~10.0.18362.1500.75a304f2c4e55752c10e3233547a87e9'

I'll source the missing files for you. They seem to part of the 1909 enablement package judging by the version number.
 
Rich (BB code):
2022-03-18 11:50:03, Info                  CSI    00000299 [SR] Cannot repair member file [l:11]'certmgr.msc' of Microsoft-Windows-CertificateManagerSnapinDLL, version 10.0.18362.1316, arch Host= amd64 Guest= x86, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
2022-03-18 11:50:03, Info                  CSI    0000029a [SR] Cannot repair member file [l:10]'certlm.msc' of Microsoft-Windows-CertificateManagerSnapinDLL, version 10.0.18362.1316, arch Host= amd64 Guest= x86, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
2022-03-18 11:50:03, Info                  CSI    0000029b [SR] Cannot repair member file [l:11]'certmgr.msc' of Microsoft-Windows-CertificateManagerSnapinDLL, version 10.0.18362.1316, arch Host= amd64 Guest= x86, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
2022-03-18 11:50:03, Info                  CSI    0000029c [SR] This component was referenced by [l:124]'Microsoft-Windows-Client-Features-WOW64-Package0011~31bf3856ad364e35~amd64~~10.0.18362.1500.75a304f2c4e55752c10e3233547a87e9'
2022-03-18 11:50:03, Info                  CSI    0000029d [SR] Cannot repair member file [l:10]'certlm.msc' of Microsoft-Windows-CertificateManagerSnapinDLL, version 10.0.18362.1316, arch Host= amd64 Guest= x86, nonSxS, pkt {l:8 b:31bf3856ad364e35} in the store, file is missing
2022-03-18 11:50:03, Info                  CSI    0000029e [SR] This component was referenced by [l:124]'Microsoft-Windows-Client-Features-WOW64-Package0011~31bf3856ad364e35~amd64~~10.0.18362.1500.75a304f2c4e55752c10e3233547a87e9'

I'll source the missing files for you. They seem to part of the 1909 enablement package judging by the version number.
yes it is version 1909, thanks !
 
SFCFix Script
Warning: this fix is specific to the user in this thread. No one else should follow these instructions as it may cause more harm than good. If you are after assistance, please start a thread of your own.
  1. Download SFCFix.exe (by niemiro) and save this to your Desktop.
  2. Download the file below, SFCFix.zip, and save this to your Desktop. Ensure that this file is named SFCFix.zip - do not rename it.
  3. Save any open documents and close all open windows.
  4. On your Desktop, you should see two files: SFCFix.exe and SFCFix.zip.
  5. Drag the file SFCFix.zip onto the file SFCFix.exe and release it.
  6. SFCFix will now process the script.
  7. Upon completion, a file should be created on your Desktop: SFCFix.txt.
  8. Copy (Ctrl+C) and Paste (Ctrl+V) the contents of this file into your next post for me to analyse please - put [CODE][/CODE] tags around the log to break up the text.
 

Attachments

Thanks, just did it, here is the output:

Code:
SFCFix version 3.0.2.1 by niemiro.
Start time: 2022-03-18 20:14:17.866
Microsoft Windows 10 Build 18363 - amd64
Using .zip script file at C:\Users\Bnj\Desktop\SFCFix.zip [0]




PowerCopy::
Successfully took permissions for file or folder C:\windows\WinSxS\wow64_microsoft-windows-c..atemanagersnapindll_31bf3856ad364e35_10.0.18362.1316_none_6d0e898c42d0b5ea

Successfully copied file C:\Users\Bnj\AppData\Local\niemiro\Archive\wow64_microsoft-windows-c..atemanagersnapindll_31bf3856ad364e35_10.0.18362.1316_none_6d0e898c42d0b5ea\certlm.msc to C:\windows\WinSxS\wow64_microsoft-windows-c..atemanagersnapindll_31bf3856ad364e35_10.0.18362.1316_none_6d0e898c42d0b5ea\certlm.msc.
Successfully copied file C:\Users\Bnj\AppData\Local\niemiro\Archive\wow64_microsoft-windows-c..atemanagersnapindll_31bf3856ad364e35_10.0.18362.1316_none_6d0e898c42d0b5ea\certmgr.msc to C:\windows\WinSxS\wow64_microsoft-windows-c..atemanagersnapindll_31bf3856ad364e35_10.0.18362.1316_none_6d0e898c42d0b5ea\certmgr.msc.

Successfully restored ownership for C:\windows\WinSxS\wow64_microsoft-windows-c..atemanagersnapindll_31bf3856ad364e35_10.0.18362.1316_none_6d0e898c42d0b5ea
Successfully restored permissions on C:\windows\WinSxS\wow64_microsoft-windows-c..atemanagersnapindll_31bf3856ad364e35_10.0.18362.1316_none_6d0e898c42d0b5ea
PowerCopy:: directive completed successfully.




Successfully processed all directives.
SFCFix version 3.0.2.1 by niemiro has completed.
Currently storing 1 datablocks.
Finish time: 2022-03-18 20:14:18.727
Script hash: g3cAZqWrtzV4SnAs5dw9gPROjP7BpQiMabyLObYekUg=
----------------------EOF-----------------------
 
Thanks, just did it, here is the output:
Please run SFC or DISM again to ensure there is no longer any problems and then please perform a in-place upgrade to the latest Windows 10 version, unless there is a particular reason why you need to stay on 1909?
 
Please run SFC or DISM again to ensure there is no longer any problems and then please perform a in-place upgrade to the latest Windows 10 version, unless there is a particular reason why you need to stay on 1909?
It works without errors ! Thanks a lot. I am now going to perform the upgrade. I just realized it was broken about a month ago but gave up after trying a lot of methods without success, then I was waiting to have the time to do a fresh OS install. But it seems now I will be able to upgrade. Thanks again.
 

Has Sysnative Forums helped you? Please consider donating to help us support the site!

Back
Top