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

►CMD Command

sfc /scannow

►Powershell Command 1

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

►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.1703821223.txt.gz · Last modified: 2023/12/29 03:40 by wikiadmin