Skip to content

Instantly share code, notes, and snippets.

@tangar76
Last active June 1, 2016 19:37
Show Gist options
  • Save tangar76/ade6ba75cf389bfaf3a7a82ba708f9d1 to your computer and use it in GitHub Desktop.
Save tangar76/ade6ba75cf389bfaf3a7a82ba708f9d1 to your computer and use it in GitHub Desktop.
windows 10 - fix stuck start
# 1. When the Run new task dialog box opens, type 'powershell', tick the box for Create this task with administrative privileges and click OK.
sfc /scannow
# 1.1 'Windows Resource Protection found corrupt files but was unable to fix some (or all) of them' indicates a problem.
DISM /Online /Cleanup-Image /RestoreHealth
# 2nd possible fix if previous did not help. Run follow command in powershell
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
# DO NOT FORGET TO RESTART PC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment