Install Config Wiki

All about installing, configuring and troubleshooting

User Tools

Site Tools


solved_windows_10_settings_app_not_opening_working

This is an old revision of the document!


[Solutions for] Windows 10 Settings App Not Opening or Working

Use the System File Checker tool to repair missing or corrupted system files.

See: https://support.microsoft.com/en-us/topic/use-the-system-file-checker-tool-to-repair-missing-or-corrupted-system-files-79aa86cb-ca52-166a-92a3-966e85d4094e

To do this, follow these steps:

Open an elevated command prompt. next to Windows start button, perform a search for cmd.exe and press enter key.

The top search result should be Command Prompt.

Right click on the “Command Prompt” result and then Left click on the drop down list to select “Run as Administrator.” When asked for further run permission, click YES. The black command window should then open with administrative privileges. This is known as an elevated command prompt.

If you are running Windows 10, Windows 8.1 or Windows 8, you should first run the inbox Deployment Image Servicing and Management (DISM) tool prior to running the System File Checker.

Type the following command code in the black elevated command prompt, and then press Enter.

DISM.exe /Online /Cleanup-image /Restorehealth

It may take several minutes for the command operation to be completed.

Now, after DISM has been run, in the same elevated black Command Prompt window, next run the system file checker (sfc.exe) to scan for and repair corrupted or missing system files, as follows.

►CMD Command

sfc /scannow

Check to see if this corrected the problem. If not, then move on to the next possible fix.

You must first open an elevated Powershell blue window.

Next to the Windows start button, search for Powershell. Open the top level result with administrative privileges in the same manner that you opened an elevated command prompt with Administrative privileges. See above.

►Powershell Command 1

Copy, paste and run the following code in the elevated Powershell window.

Get-AppXPackage -AllUsers -Name windows.immersivecontrolpanel | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml” -Verbose}

In the same elevated Powershell window, copy, paste and run the following code.

►Powershell Command 2

Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

►Registry Path

regedit

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer

Right click on white space in the right side pane and select DWord32BitValue

and Name that new key

NoControlPanel

set the name

double click to open the new key

and enter value data as

0

Close the key

Close regedit

Restart the computer and check whether the problem is fixed.

►CMD Commands for creating a New username and adding the user to the Administrators Group

net user user_name password /add

net localgroup administrators user_name /add

Watch on youtube: https://www.youtube.com/watch?v=NexB57lGei4

solved_windows_10_settings_app_not_opening_working.1703822905.txt.gz · Last modified: 2023/12/29 04:08 by wikiadmin