I have had a handful of issues with Windows 10 but still like it. Here are some issues and fixes I found work for me:
Generic Fixes
- Start a Command Window (CMD) by right-clicking c:\windows\system32\cmd.exe and choosing “Run as Administrator”
- sfc /scannow
Restore Registry Permissions (The Microsoft Way)
- Download SubinACL from here: http://www.microsoft.com/en-us/download/details.aspx?id=23510
- cd “c:\Program Files\Windows Resource Kits\Tools”
- subinacl /subkeyreg HKEY_CURRENT_USER /grant=administrators=f /grant=system=f /grant=restricted=r /grant=users=f /setowner=administrators
- subinacl /keyreg HKEY_CURRENT_USER /grant=administrators=f /grant=system=f /grant=restricted=r /grant=users=f /setowner=administrators
- subinacl /subkeyreg HKEY_LOCAL_MACHINE /grant=administrators=f /grant=system=f /grant=users=r /grant=everyone=r /grant=restricted=r
- subinacl /keyreg HKEY_LOCAL_MACHINE /grant=administrators=f /grant=system=f /grant=users=r /grant=everyone=r /grant=restricted=r
- subinacl /subkeyreg HKEY_CLASSES_ROOT /grant=administrators=f /grant=system=f /grant=users=r /setowner=administrators
- subinacl /keyreg HKEY_CLASSES_ROOT /grant=administrators=f /grant=system=f /grant=users=r /setowner=administrators
Restore Registry Permissions (The Freeware Way)
- Download SetACL from https://helgeklein.com/download/
- “SetACL.exe” -on “HKLM\SYSTEM\CurrentControlSet\Services” -ot “reg” -ownr “n:%UserName%” -rec “Yes” -actn “setowner” -silent
- “SetACL.exe” -on “HKLM\SYSTEM\CurrentControlSet\Services” -ot “reg” -ace “n:%UserName%;p:full” -rec “Yes” -actn “ace” -silent
- “SetACL.exe” -on “HKLM\SYSTEM\ControlSet001\Services” -ot “reg” -ownr “n:%UserName%” -rec “Yes” -actn “setowner” -silent
- “SetACL.exe” -on “HKLM\SYSTEM\ControlSet001\Services” -ot “reg” -ace “n:%UserName%;p:full” -rec “Yes” -actn “ace” -silent
Store stops working (or apps downloaded from the store)
- Start a Command Window (CMD) by right-clicking c:\windows\system32\cmd.exe and choosing “Run as Administrator”
- Powershell
- $manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
Windows Start Button stops working
- Start a Command Window (CMD) by right-clicking c:\windows\system32\cmd.exe and choosing “Run as Administrator”
- Powershell
- Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
- DISM /Online /Cleanup-Image /RestoreHealth
- Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}