In this post, you will learn how to fix Settings app crashes in Windows 10 and 11. You can also use this guide if the Settings app won't even open.

The Settings app has been around since Windows 8, but it has evolved significantly in Windows 10 and 11. Microsoft keeps improving and adding new features to the Settings app, while the traditional Control Panel doesn't get much attention any longer. Microsoft is now pushing users to use the Settings app, but what if it keeps crashing or won't even open in your system? If you are facing this issue with the Settings app in Windows 10 or 11, you are not alone.

Settings app replaces Control Panel

Whenever you want to make any change in Windows, the Settings app will start instead of the Control Panel. The Settings app is basically a Universal Windows Platform (UWP) app installed inside %windir%\ImmersiveControlPanel directory, and it is called by the Windows.ImmersiveControlPanel package name. You can use the following PowerShell command to get information about the Settings app:

Get-AppxPackage Windows.ImmersiveControlPanel
Getting information about the Settings app using PowerShell

Getting information about the Settings app using PowerShell

Before we jump into fixing the Settings app problem, one more thing worth mentioning is that a Group Policy setting could prohibit you from using the Settings app. If the Settings app in your computer starts and then closes immediately, check and make sure this Group Policy setting isn't enabled. The setting is available under:

User Configuration > Administrative Templates > Control Panel > Prohibit access to Control Panel and PC settings

Understanding the Prohibit access to Control Panel and PC settings group policy

Understanding the Prohibit access to Control Panel and PC settings group policy

Reset the Settings app

The easiest way to fix any problem with the Settings app (or any other app, for that matter) is to reset it. Resetting the app will reinstall it with its default settings. You can do this using either a PowerShell command or the GUI option.

Reset the Settings app using PowerShell

If you are running Windows 11, you can use Reset-AppxPackage, as shown below, to reset the Settings app with PowerShell:

Get-AppxPackage Windows.ImmersiveControlPanel | Reset-AppxPackage
Reset the Settings app using PowerShell in Windows 11

Reset the Settings app using PowerShell in Windows 11

Unfortunately, the Reset-AppxPackage command is not yet available in Windows 10. It is only available with Windows 11 or Windows 10 Insider Preview Build 20215. Thus, if you try to run this command in Windows 10 running a build number lower than 20215, you will get an error message:

The term 'Reset-AppxPackage' is not recognized as the name of a cmdlet, function, script file, or operable program.

Reset AppxPackage is unavailable in Windows 10

Reset AppxPackage is unavailable in Windows 10

If the above command isn't available in your version of Windows, you can use the following command instead:

$Manifest = (Get-AppxPackage *ImmersiveControlPanel*).InstallLocation + '\appxmanifest.xml'; Add-AppxPackage -DisableDevelopmentMode -Register $Manifest
Reinstall and register the Settings app in Windows 10 using PowerShell

Reinstall and register the Settings app in Windows 10 using PowerShell

This command reinstalls and reregisters the Settings app package in Windows 10. Restart your computer after running this command, and the problem should now go away.

Reset the Settings app using GUI

If you're not a fan of PowerShell and prefer doing things using the GUI, follow these steps:

  1. Click the Start button and type Settings.
  2. In the search results, click the App Settings option, as shown in the screenshot:

    Opening the app settings for the Settings app

    Opening the app settings for the Settings app

Opening the app settings for the Settings app

  1. Scroll down to the Reset section, and click the Repair button. Windows repairs the app while leaving the app data intact.

    Repairing and resetting the Settings app

    Repairing and resetting the Settings app

  2. If the repair option doesn't help, click the Reset button to reset the Settings app to the default.

Now restart your computer and see if the issue with the Settings app is fixed.

If the problem persists, something is wrong with your Windows installation. In this case, I recommend running the following command:

sfc /scannow
Running sfc scannow command to repair system files in Windows

Running sfc scannow command to repair system files in Windows

This command scans the Windows installation for system file problems and repairs the corrupted files using the Windows component store (%windir%\WinSxS directory). After running this command, restart your computer, and check whether the problem is gone.

If a problem persists, run the following command:

DISM /Online /Cleanup-Image /RestoreHealth
Running DISM to repair the Windows component store

Running DISM to repair the Windows component store

This command scans and repairs the Windows component store itself, which is used by the sfc /scannow command. Remember, this command will contact Windows Update for any files that are needed that might require an active internet connection.

These commands will recreate the %windir%\ImmersiveControlPanel directory using the Windows component store, which is likely to fix most of the Windows problems (including the Settings app crash). Both of these commands take a long time, so you have to be patient while the system is repaired.

I hope this post helped fix Settings app crashes. If not, or if you know other ways of dealing with Setting app issues, please post a comment below.

7 Comments
  1. Great post!

    avatar
  2. Andras 9 months ago

    I have Windows 11 Pro, been looking for the APPS > APPS & FEATURES -> REPAIR, not even a trace of it. Simply cannot find it. The Get-AppxPackage did run, but did not change the situation: Display Settings opens then closes, also Language Settings opens and closes. This all started to happen after:
    1) switched the diplsay language from Hunagrian to English (I don’t even recall choosing Hungarian when installing)
    2) changed from the online Microsoft account to a local acocunt without a password

    Since then, the whole thing is “half-working”. Even after 30 years, it still easily crumbles.

    Tried scannow, did say corruption was found and that it got repaired. Nothing changed though.

    Then tried the DISM one. That one is running.

    Anways, thanks for the effort! Maybe the DISM will resolve the problem. If not, a reinstall must happen. Still playing these reinstall games. And all this due to the forced online account. In Win10 I was able to somehow get around it during installation but for Win11 I could not figure it out how to refuse that lame online account.

    • Author

      Yeah, I can understand. We all have been there while working with Windows. I hope DISM works out for you but if it doesn’t, you could also try an in-place upgrade before doing a clean install. In-place upgrade is known to repair all sorts of corruption issues.

  3. vijaylaxmi 8 months ago

    how to read cbs.log file that generated by sfc /scannow
    and how and where to find currupt file name.
    explain it how to read cbs.log file for fix the errors.
    when windows can not fix it through sfc/scannow.

    • Author

      Just open a command prompt and run the following command:

      findstr /c:"[SR]" %windir%\\Logs\\CBS\\CBS.log > "%userprofile%\\desktop\\sfc_logs.txt"

      You will see a text file on your desktop containing just SFC logs.

  4. Jefferey Burnside 4 months ago

    Widows 11 if by7 chance you can turn off automatic updates or you have done so and no the setting app crashes it is because microsoft want you to leave auto update on and as soon as you turn it back on the setting s screen will work properly

Leave a reply

Your email address will not be published. Required fields are marked *

*

© 4sysops 2006 - 2023

CONTACT US

Please ask IT administration questions in the forums. Any other messages are welcome.

Sending

Log in with your credentials

or    

Forgot your details?

Create Account