Left Click stopps Working in Windows 10

Windows 10 App repair Re-Register

This can because by Windows 10 apps failing so its worth running a Powershell command to re-register them all:

  • Right click at Start button
  • Select Command Prompt (Admin) ( run this as an admin)
  • When the Command Prompt appears, type Powershell and press enter
  • Wait until the Powershell prompt appears: PS C:\windows\system32>
  • At the Powershell prompt paste the following command:
    Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
  • Press Enter

You will now see the Powershell sift through all of the Windows 10 packages and re-register them.  There will be some warning messages in red which can be mostly ignore.

Scroll to Top