How To

How To Resolve Issues When Windows Updates and Settings Fail to Open

February 13, 2026 5 minuten lezen Updated: February 13, 2026

Dealing with Windows Update and Settings app not opening is pretty frustrating, especially when you rely on them for critical updates or tweaking your system. Sometimes, it’s just a glitch, other times it’s because some system files or registry entries got corrupted or disabled. The good news is that there are several ways to fix this, and most don’t require a full reinstall. These steps tend to work across various Windows setups, though weird things can happen on some machines – like Settings suddenly wanting admin rights or refusing to launch after an update. It’s kind of annoying, but it’s solvable.

How to Fix Updates and Settings Not Opening in Windows

Enable or Re-enable the Settings App and Control Panel Access

This is a common culprit when Settings or Windows Update refuse to launch. Reasons vary from accidental registry tweaks to Windows bugs. Basically, if Windows thinks you’re not allowed to see the Settings or Control Panel, it just won’t open them. Re-enabling access can do the trick.

  1. Press Windows Key + R, type regedit.exe, and press Enter.
  2. Navigate to the registry location: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer.

    If you don’t see an Explorer key here, right-click on Policies, choose New > Key, and name it Explorer.

  3. Look for a DWORD named NoControlPanel. If it exists, double-click it and set the value to 0.

    If it doesn’t exist, right-click in the blank space, select New > DWORD (32-bit) Value, and name it NoControlPanel. Then, set it to 0.

  4. Close the registry editor. Then, press Windows Key + R, type gpedit.msc, and hit Enter.
  5. Navigate to User Configuration > Administrative Templates > Control Panel.
  6. Open Prohibit access to Control Panel and PC Settings and set it to Disabled.
  7. Finally, restart your PC. Once it’s back up, try launching Settings or Windows Update again. It’s a bit of a dance, but usually, this unlocks access.

From experience, on some setups, these registry or group policy tweaks aren’t enough or don’t stick right away. Rebooting a couple of times or rechecking the settings sometimes helps. Because Windows is always playing hard to get.

Reinstall the Settings App via PowerShell

When Settings app files get corrupted, reinstallation can clear out the cobwebs. You’ll need PowerShell running as admin for this one. It’s straightforward but might feel a little risky if you’re not used to command-line stuff.

  1. Press Windows Key + R, type powershell, then press Ctrl + Shift + Enter to run as administrator.
  2. Once PowerShell opens, run this command — it gently reinstalls the immersive control panel (that’s the Settings app):
  3. Add-AppxPackage -DisableDevelopmentMode -Register "$Env:SystemRoot\ImmersiveControlPanel\AppXManifest.xml"
  4. You might see some verbose output, but that’s normal. Once done, close PowerShell and check if Settings or Windows Update now open. Sometimes, this just resets the app’s files back to a working state.

Run Windows Update Troubleshooter Using Command Line

If Windows Update is acting up, running the built-in troubleshooter can help. But if it’s busted or not opening, you can do the next best thing—use Windows’ own update commands via PowerShell or Command Prompt.

  1. Open PowerShell as admin again.
  2. To check for updates manually, run:
  3. Install-Module -Name PSWindowsUpdate Get-WindowsUpdate Install-WindowsUpdate -AcceptAll -AutoReboot

    This method downloads and installs updates without relying on the GUI. On some setups, it can bypass whatever is blocking the usual update process.

Alternatively, in command prompt, try these commands:

  • UsoClient StartScan
  • UsoClient StartDownload
  • UsoClient StartInstall

These are quick and dirty, but sometimes enough to get the system updating again.

Create a New User with Admin Privileges

If your current user profile is corrupted or has some setting blocking access, creating a fresh admin account sometimes clears the obstacle.

  1. Open Command Prompt as administrator.
  2. Create a new user with:
  3. net user NewUser Password123 /add
  4. Then promote this new user to admin:
  5. net localgroup administrators NewUser /add
  6. Log out, switch to the new profile, and see if Settings and Update work now. On some systems, bugs are tied to user profiles rather than the whole OS.

Uninstall Windows Updates That Might Be Causing Problems

Sometimes, a new update is the actual villain. Bugs in rolled-out updates can break parts of Windows, including the Settings app. Removing recent updates can help diagnose or fix the issue.

  1. Open Command Prompt as admin.
  2. Check installed updates with:
  3. wmic qfe list full /format:table
  4. Identify the latest KB update that might be causing trouble, then uninstall it like so:
  5. wusa /uninstall /kb:5020672

    (with 5020672 replaced by the actual HotFixID).

    If Windows prompts for restart, do it and then test if the Settings app opens.

Perform a Windows System Reset or Restore

If all else fails, resetting Windows can fix deep systemic issues. It’s a pain because it can wipe out apps and customizations, but sometimes it’s the only fix left. You can also try restoring to a previous restore point if you made one before the trouble started.

  1. Type rstrui in the Run box (Windows Key + R) to open System Restore.
  2. If restore points are available, pick one from before the issues began, and follow the prompts to restore.
  3. Otherwise, you can reset Windows completely: press Windows Key + R, type systemreset -factoryreset, and hit Enter.
  4. Choose whether to keep files or wipe everything (if you have backups, choose wipe).
  5. Let Windows do its thing—this can take a while, but it’s often the last reset button.

Almost always, these fixes can get your Windows back to a usable state when the update or Settings app refuses to open. Just keep in mind that some steps (like resetting) can be disruptive, so back up your data if needed. Fingers crossed this helps, and don’t be surprised if it takes a couple of tries or reboots to stick.

Summary

  • Reset registry or group policy settings to re-enable access.
  • Reinstall Settings app with PowerShell.
  • Run updates via command line or PowerShell scripts.
  • Try creating a new admin user if profile issues are suspected.
  • Uninstall recent Windows updates that might be causing conflicts.
  • Reset or restore Windows if everything else fails.

Wrap-up

Most of the time, a combination of these steps will bring back the Settings and Windows Update working again. It’s not always straightforward, but patching the system or rebuilding a profile often does the trick. Because Windows is kinda nice when it works — just sometimes making it do what you want is the tricky part. Hopefully, this shaves off a few hours for someone.