meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
windows:windows10:0x8000ffff [2020/11/29 21:09] niziakwindows:windows10:0x8000ffff [2020/11/30 14:03] niziak
Line 6: Line 6:
     * ''mmc.exe'' - app locked      * ''mmc.exe'' - app locked 
     * Able to run ''mmc.exe'' from Power Shell run as Administrator     * Able to run ''mmc.exe'' from Power Shell run as Administrator
 +
 +It looks like strange Windows files corruption.
  
 Try to fix: Try to fix:
Line 20: Line 22:
  
     * [[https://smartfix.pro/SmartFix.exe|Smart Fix]]     * [[https://smartfix.pro/SmartFix.exe|Smart Fix]]
-    +        It installs Windows RE and integrate it into boot menu 
 +        * Cannot works with QEMU SCSI Virtual Controller! 
 + 
 +    * [[https://windowsreport.com/sfc-scannow-stops-windows-10/|Sfc /scannow stops on Windows 10 [BEST SOLUTIONS]]] 
 +      * [[https://windowsreport.com/dism-failed-windows-10/|FIX: DISM failed on Windows 10]] 
 + 
 +    * <code cmd>icacls C:\windows /reset /t /c /l</code>
  
 Anty malware tools: Anty malware tools:
Line 34: Line 42:
 </code> </code>
  
 +Found hints on Internet:
 <code cmd> <code cmd>
 Dism.exe /online /cleanup-image /restorehealth Dism.exe /online /cleanup-image /restorehealth
  
 +REM or
 +REM use WIN10 installation CD-ROM as drive F:
 +REM First list all images inside instalaltion CD:
 +dism /Get-WimInfo /WimFile:F:\sources\install.wim
 +REM remember index of your installation, i.e. 6 for Win 10 Pro
 +dism /Online /Cleanup-Image /RestoreHealth /Source:WIM:F:\sources\install.wim:6 /LimitAccess
 +
 +REM or
 REM mount Windows folder from another healthy system as Y: REM mount Windows folder from another healthy system as Y:
-Dism.exe /online /cleanup-image /restorehealth /Source:Y:\ /LimitAccess+Dism.exe /Online /Cleanup-Image /RestoreHealth /Source:Y:\ /LimitAccess
 </code> </code>
  
 +doesn't help, the same error.
  
 +===== Solution ? =====
 +
 +<code cmd>
 +Dism.exe /Online /Cleanup-Image /StartComponentCleanup
 +Dism.exe /Online /Cleanup-Image /AnalyzeComponentStore
 +sfc/scannow
 +Dism.exe /Online /Cleanup-Image /RestoreHealth
 +sfc/scannow
 </code> </code>
 +
 +
 +https://www.wintips.org/fix-dism-source-files-could-not-be-found-windows-10-8/