Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Get-AppXPackage -AllUsers -Name windows.

immersivecontrolpanel | Foreach {Add-AppxPackage -


DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml” -Verbose}

Hit enter on your keyboard. This should fix the settings app on Windows 10. If the above command
does not work then you can rebuild all the Windows 10 Apps. Copy this command on command
prompt –

Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$


($_.InstallLocation)\AppXManifest.xml"}

You might also like