Windows OS Hub
  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2012
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu
  • Home
  • About

Windows OS Hub

  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2012
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu

 Windows OS Hub / Windows 10 / Settings App Won’t Open/Crashes on Windows 10/11

January 25, 2022 PowerShellWindows 10Windows 11

Settings App Won’t Open/Crashes on Windows 10/11

The Settings app begins to play an important role in managing and configuring Windows 10 operating system (and even more so Windows 11). The classic Windows Control Panel is no longer developed, and Microsoft is adding new features to the modern Settings app only. However, I have already come across situations when the Settings app keeps crashing, won’t open, closes instantly when opening a specific Settings section, or returns an error. Let’s look at how to repair the Settings app in Windows 10 or Windows 11.

When I tried to open Windows 10 Settings from the Start menu, a blank window with the blue background opened:

All Settings App Pages Blank on Windows 10 and 11

And if I called it from an app menu (for example, the Display settings window) using the ms-settings command (ms-settings:display) or from the desktop, the following error appeared:

ms-settings:display
This file does not have a program associated with it for performing this action. Please install a program or, if one is already installed, create an association in the Default Programs control panel.

ms-settings This file does not have a program associated with it for performing this action

How to Reset the Settings App in Windows 10 and 11?

In the easiest case, if you have any problems with the Settings app, you can reset its settings to default. Find the Settings app using Windows Search and select App settings.

open Settings apps options

To reset the settings, click Reset.

reset Windows 10/11 Settings app

In the same way, you can softly reset the Settings app in Windows 10 using PowerShell:

Get-AppxPackage windows.immersivecontrolpanel | Reset-AppxPackage

If the reset didn’t help, make sure that your account has read&write NTFS permissions on the manifest file of your Settings app (it is easier to do it from PowerShell):

get-acl C:\Windows\ImmersiveControlPanel\SystemSettings.exe.manifest |fl

By default, only NT SERVICE\TrustedInstaller has permission to access this file.

Using takeown and icacls tools, make your account the owner of SystemSettings.exe.manifest file and grant yourself full control permissions:

takeown /F 'C:\Windows\ImmersiveControlPanel\SystemSettings.exe.manifest'
icacls 'C:\Windows\ImmersiveControlPanel\SystemSettings.exe.manifest' /grant myhostname\root:F

Delete the file (or better just rename it):

Rename-Item 'C:\Windows\ImmersiveControlPanel\SystemSettings.exe.manifest' 'C:\Windows\ImmersiveControlPanel\SystemSettings.exe.manifest_bak'

reset windows.immersivecontrolpanel appx using powershell

Try to reset the app settings again.

If the Settings app closes immediately after clicking its icon, make sure that users are allowed to launch the Control Panel in the GPO settings. In the Local Group Policy Editor (gpedit.msc), this option is located in User Configuration -> Administrative Templates -> Control Panel -> Prohibit access to Control Panel and PC Settings.

The NoControlPan registry parameter in HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer matches this GPO option.

GPO: Prohibit access to Control Panel and PC Settings

How to Reinstall the Settings App in Windows 10/11?

The Settings app is a built-in UWP Windows app. It means that you manage it like any other Microsoft Store APPX: you can uninstall, install, or repair it.

Make sure that ImmersiveControlPanel appx is registered in Windows:

Get-AppxPackage *immersivecontrolpanel*

powershell Get-AppxPackage ImmersiveControlPanel info

As you can see, unlike other Microsoft Store apps, it is located in C:\Windows\ImmersiveControlPanel instead of C:\Program Files\WindowsApps.

Try to reinstall the ImmersiveControlPanel apps using the manifest file. Use the following PowerShell commands:

$manifest = (Get-AppxPackage *immersivecontrolpanel*).InstallLocation + '\AppxManifest.xml'
Add-AppxPackage -DisableDevelopmentMode -Register $manifest

Restart your computer:

Restart-Computer

If nothing helps, rename the C:\Windows\ImmersiveControlPanel directory, check and repair Windows image system files using the following commands:

sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth

These commands should re-create the ImmersiveControlPanel directory using the source files from Windows Component Store.

0 comment
0
Facebook Twitter Google + Pinterest
previous post
Windows Cannot Find the Microsoft Software License Terms
next post
Mailbox Size and Quotas in Exchange 2019/2016 and Microsoft 365

Related Reading

Create Organizational Units (OU) Structure in Active Directory...

May 17, 2022

Windows Security Won’t Open or Shows a Blank...

May 17, 2022

How to Manually Install Windows Updates from CAB...

May 16, 2022

RDS and RemoteApp Performance Issues on Windows Server...

May 16, 2022

Enable or Disable MFA for Users in Azure/Microsoft...

April 27, 2022

Leave a Comment Cancel Reply

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows 7
  • Windows Server 2019
  • Windows Server 2016
  • Windows Server 2012 R2
  • PowerShell
  • VMWare
  • Hyper-V
  • MS Office

Recent Posts

  • Create Organizational Units (OU) Structure in Active Directory with PowerShell

    May 17, 2022
  • Windows Security Won’t Open or Shows a Blank Screen on Windows 10/ 11

    May 17, 2022
  • How to Manually Install Windows Updates from CAB and MSU Files?

    May 16, 2022
  • RDS and RemoteApp Performance Issues on Windows Server 2019/2016

    May 16, 2022
  • Deploying Software (MSI Packages) Using Group Policy

    May 12, 2022
  • Updating VMware ESXi Host from the Command Line

    May 11, 2022
  • Enable or Disable MFA for Users in Azure/Microsoft 365

    April 27, 2022
  • Fix: You’ll Need a New App to Open This Windows Defender Link

    April 27, 2022
  • How to Reset an Active Directory User Password with PowerShell and ADUC?

    April 27, 2022
  • How to Completely Uninstall Previous Versions of Office with Removal Scripts?

    April 26, 2022

Follow us

woshub.com

ad

  • Facebook
  • Twitter
  • RSS
Popular Posts
  • Installing RSAT Administration Tools on Windows 10 and 11
  • Get-ADUser: Find Active Directory User Info with PowerShell
  • How to Hide Installed Programs in Windows 10 and 11?
  • Manage Windows Updates with PSWindowsUpdate PowerShell Module
  • Tracking and Analyzing Remote Desktop Connection Logs in Windows
  • PowerShell: Get Folder Sizes on Disk in Windows
  • How to Automatically Fill the Computer Description in Active Directory?
Footer Logo

@2014 - 2018 - Windows OS Hub. All about operating systems for sysadmins


Back To Top