Windows OS Hub
  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • 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 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

Zabbix: How to Get Data from PowerShell Scripts

October 27, 2023

Tracking Printer Usage with Windows Event Viewer Logs

October 19, 2023

PowerShell: Configure Certificate-Based Authentication for Exchange Online (Azure)

October 15, 2023

How to Query and Change Teams User Presence...

October 8, 2023

How to Use Ansible to Manage Windows Machines

September 25, 2023

Leave a Comment Cancel Reply

Categories

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

Recent Posts

  • Zabbix: How to Get Data from PowerShell Scripts

    October 27, 2023
  • Tracking Printer Usage with Windows Event Viewer Logs

    October 19, 2023
  • PowerShell: Configure Certificate-Based Authentication for Exchange Online (Azure)

    October 15, 2023
  • Reset Root Password in VMware ESXi

    October 12, 2023
  • How to Query and Change Teams User Presence Status with PowerShell

    October 8, 2023
  • How to Increase Size of Disk Partition in Ubuntu

    October 5, 2023
  • How to Use Ansible to Manage Windows Machines

    September 25, 2023
  • Installing Language Pack in Windows 10/11 with PowerShell

    September 15, 2023
  • Configure Email Forwarding for Mailbox on Exchange Server/Microsoft 365

    September 14, 2023
  • How to View and Change BIOS (UEFI) Settings with PowerShell

    September 13, 2023

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Fix: Remote Desktop Licensing Mode is not Configured
  • Manage Windows Updates with PSWindowsUpdate PowerShell Module
  • Configuring Port Forwarding in Windows
  • Start Menu or Taskbar Search Not Working in Windows 10/11
  • How to Install Remote Server Administration Tools (RSAT) on Windows
  • How to Delete Old User Profiles in Windows
  • Get-ADUser: Find Active Directory User Info with PowerShell
Footer Logo

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


Back To Top