Windows 10/Fix DISM: Difference between revisions

From Wiki
(Die Seite wurde neu angelegt: „* In case "Photos" throws an "remote procedure call" error: ** Dism.exe /online /Cleanup-Image /StartComponentCleanup sfc /scannow Dism /Online /Cleanup-Image…“)
 
mNo edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
* In case "Photos" throws an "remote procedure call" error:
* In case "Photos" throws an "remote procedure call" error:
**
<blockquote>
<pre>
Dism.exe /online /Cleanup-Image /StartComponentCleanup
Dism.exe /online /Cleanup-Image /StartComponentCleanup
sfc /scannow
sfc /scannow
Dism /Online /Cleanup-Image /RestoreHealth
Dism /Online /Cleanup-Image /RestoreHealth
sfc /scannow  
sfc /scannow  
 
</pre>
**
</blockquote>
<blockquote>
<pre>
powershell
powershell
Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
</pre>
</blockquote>
[[Category:Windows 10]]

Latest revision as of 11:35, 18 January 2021

  • In case "Photos" throws an "remote procedure call" error:
Dism.exe /online /Cleanup-Image /StartComponentCleanup
sfc /scannow
Dism /Online /Cleanup-Image /RestoreHealth
sfc /scannow 
powershell
Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}