Windows 10/Fix DISM: Difference between revisions

From Wiki
No edit summary
No edit summary
Line 1: Line 1:
* In case "Photos" throws an "remote procedure call" error:
* In case "Photos" throws an "remote procedure call" error:
**
<blockquote>
<blockquote>
<pre>
<pre>
Line 9: Line 8:
</pre>
</pre>
</blockquote>
</blockquote>
 
**
<blockquote>
<blockquote>
<pre>
<pre>

Revision as of 19:19, 15 May 2016

  • 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"}