{"id":10993,"date":"2026-02-13T09:18:20","date_gmt":"2026-02-13T09:18:20","guid":{"rendered":"https:\/\/howtogeek.blog\/nl\/?p=10993"},"modified":"2026-02-13T09:18:20","modified_gmt":"2026-02-13T09:18:20","slug":"how-to-resolve-issues-when-windows-updates-and-settings-fail-to-open","status":"publish","type":"post","link":"https:\/\/howtogeek.blog\/nl\/how-to-resolve-issues-when-windows-updates-and-settings-fail-to-open\/","title":{"rendered":"How To Resolve Issues When Windows Updates and Settings Fail to Open"},"content":{"rendered":"<p>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\u2019s just a glitch, other times it\u2019s 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\u2019t require a full reinstall. These steps tend to work across various Windows setups, though weird things can happen on some machines \u2013 like Settings suddenly wanting admin rights or refusing to launch after an update. It\u2019s kind of annoying, but it\u2019s solvable.<\/p>\n<h2>How to Fix Updates and Settings Not Opening in Windows<\/h2>\n<h3>Enable or Re-enable the Settings App and Control Panel Access<\/h3>\n<p>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&#8217;re not allowed to see the Settings or Control Panel, it just won\u2019t open them. Re-enabling access can do the trick.<\/p>\n<ol>\n<li>Press <strong>Windows Key + R<\/strong>, type <code>regedit.exe<\/code>, and press <strong>Enter<\/strong>.<\/li>\n<li>Navigate to the registry location: <strong>HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer<\/strong>.\n<p>If you don\u2019t see an <strong>Explorer<\/strong> key here, right-click on <strong>Policies<\/strong>, choose <strong>New &gt; Key<\/strong>, and name it <strong>Explorer<\/strong>.<\/p>\n<\/li>\n<li>Look for a DWORD named <strong>NoControlPanel<\/strong>. If it exists, double-click it and set the value to <strong>0<\/strong>.\n<p>If it doesn\u2019t exist, right-click in the blank space, select <strong>New &gt; DWORD (32-bit) Value<\/strong>, and name it <strong>NoControlPanel<\/strong>. Then, set it to 0.<\/p>\n<\/li>\n<li>Close the registry editor. Then, press <strong>Windows Key + R<\/strong>, type <code>gpedit.msc<\/code>, and hit <strong>Enter<\/strong>.<\/li>\n<li>Navigate to <strong>User Configuration &gt; Administrative Templates &gt; Control Panel<\/strong>.<\/li>\n<li>Open <strong>Prohibit access to Control Panel and PC Settings<\/strong> and set it to <strong>Disabled<\/strong>.<\/li>\n<li>Finally, restart your PC. Once it\u2019s back up, try launching Settings or Windows Update again. It\u2019s a bit of a dance, but usually, this unlocks access.<\/li>\n<\/ol>\n<p>From experience, on some setups, these registry or group policy tweaks aren\u2019t enough or don\u2019t stick right away. Rebooting a couple of times or rechecking the settings sometimes helps. Because Windows is always playing hard to get.<\/p>\n<h3>Reinstall the Settings App via PowerShell<\/h3>\n<p>When Settings app files get corrupted, reinstallation can clear out the cobwebs. You\u2019ll need PowerShell running as admin for this one. It\u2019s straightforward but might feel a little risky if you\u2019re not used to command-line stuff.<\/p>\n<ol>\n<li>Press <strong>Windows Key + R<\/strong>, type <code>powershell<\/code>, then press <strong>Ctrl + Shift + Enter<\/strong> to run as administrator.<\/li>\n<li>Once PowerShell opens, run this command \u2014 it gently reinstalls the immersive control panel (that&#8217;s the Settings app):<\/li>\n<pre><code>Add-AppxPackage -DisableDevelopmentMode -Register \"$Env:SystemRoot\\ImmersiveControlPanel\\AppXManifest.xml\"<\/code><\/pre>\n<li>You might see some verbose output, but that\u2019s normal. Once done, close PowerShell and check if Settings or Windows Update now open. Sometimes, this just resets the app\u2019s files back to a working state.<\/li>\n<\/ol>\n<h3>Run Windows Update Troubleshooter Using Command Line<\/h3>\n<p>If Windows Update is acting up, running the built-in troubleshooter can help. But if it\u2019s busted or not opening, you can do the next best thing\u2014use Windows\u2019 own update commands via PowerShell or Command Prompt.<\/p>\n<ol>\n<li>Open PowerShell as admin again.<\/li>\n<li>To check for updates manually, run:<\/li>\n<pre><code>Install-Module -Name PSWindowsUpdate Get-WindowsUpdate Install-WindowsUpdate -AcceptAll -AutoReboot<\/code><\/pre>\n<p>This method downloads and installs updates without relying on the GUI. On some setups, it can bypass whatever is blocking the usual update process.<\/p>\n<\/ol>\n<p>Alternatively, in command prompt, try these commands:<\/p>\n<ul>\n<li><code>UsoClient StartScan<\/code><\/li>\n<li><code>UsoClient StartDownload<\/code><\/li>\n<li><code>UsoClient StartInstall<\/code><\/li>\n<\/ul>\n<p>These are quick and dirty, but sometimes enough to get the system updating again.<\/p>\n<h3>Create a New User with Admin Privileges<\/h3>\n<p>If your current user profile is corrupted or has some setting blocking access, creating a fresh admin account sometimes clears the obstacle.<\/p>\n<ol>\n<li>Open Command Prompt as administrator.<\/li>\n<li>Create a new user with:<\/li>\n<pre><code>net user NewUser Password123 \/add<\/code><\/pre>\n<li>Then promote this new user to admin:<\/li>\n<pre><code>net localgroup administrators NewUser \/add<\/code><\/pre>\n<li>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.<\/li>\n<\/ol>\n<h3>Uninstall Windows Updates That Might Be Causing Problems<\/h3>\n<p>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.<\/p>\n<ol>\n<li>Open Command Prompt as admin.<\/li>\n<li>Check installed updates with:<\/li>\n<pre><code>wmic qfe list full \/format:table<\/code><\/pre>\n<li>Identify the latest KB update that might be causing trouble, then uninstall it like so:<\/li>\n<pre><code>wusa \/uninstall \/kb:5020672<\/code><\/pre>\n<p> (with 5020672 replaced by the actual HotFixID).<\/p>\n<p>If Windows prompts for restart, do it and then test if the Settings app opens.<\/p>\n<\/ol>\n<h3>Perform a Windows System Reset or Restore<\/h3>\n<p>If all else fails, resetting Windows can fix deep systemic issues. It\u2019s a pain because it can wipe out apps and customizations, but sometimes it\u2019s the only fix left. You can also try restoring to a previous restore point if you made one before the trouble started.<\/p>\n<ol>\n<li>Type <code>rstrui<\/code> in the Run box (<strong>Windows Key + R<\/strong>) to open System Restore.<\/li>\n<li>If restore points are available, pick one from before the issues began, and follow the prompts to restore.<\/li>\n<li>Otherwise, you can reset Windows completely: press <strong>Windows Key + R<\/strong>, type <code>systemreset -factoryreset<\/code>, and hit Enter.<\/li>\n<li>Choose whether to keep files or wipe everything (if you have backups, choose wipe).<\/li>\n<li>Let Windows do its thing\u2014this can take a while, but it\u2019s often the last reset button.<\/li>\n<\/ol>\n<p>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\u2019t be surprised if it takes a couple of tries or reboots to stick.<\/p>\n<h2>Summary<\/h2>\n<ul>\n<li>Reset registry or group policy settings to re-enable access.<\/li>\n<li>Reinstall Settings app with PowerShell.<\/li>\n<li>Run updates via command line or PowerShell scripts.<\/li>\n<li>Try creating a new admin user if profile issues are suspected.<\/li>\n<li>Uninstall recent Windows updates that might be causing conflicts.<\/li>\n<li>Reset or restore Windows if everything else fails.<\/li>\n<\/ul>\n<h2>Wrap-up<\/h2>\n<p>Most of the time, a combination of these steps will bring back the Settings and Windows Update working again. It\u2019s not always straightforward, but patching the system or rebuilding a profile often does the trick. Because Windows is kinda nice when it works \u2014 just sometimes making it do what you want is the tricky part. Hopefully, this shaves off a few hours for someone.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>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\u2019s just a glitch, other times it\u2019s because some system files or registry entries got corrupted or disabled. The good news is that there are several ways to fix [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-10993","post","type-post","status-publish","format-standard","hentry","category-how-to"],"acf":[],"_links":{"self":[{"href":"https:\/\/howtogeek.blog\/nl\/wp-json\/wp\/v2\/posts\/10993","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/howtogeek.blog\/nl\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/howtogeek.blog\/nl\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/howtogeek.blog\/nl\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/howtogeek.blog\/nl\/wp-json\/wp\/v2\/comments?post=10993"}],"version-history":[{"count":1,"href":"https:\/\/howtogeek.blog\/nl\/wp-json\/wp\/v2\/posts\/10993\/revisions"}],"predecessor-version":[{"id":10994,"href":"https:\/\/howtogeek.blog\/nl\/wp-json\/wp\/v2\/posts\/10993\/revisions\/10994"}],"wp:attachment":[{"href":"https:\/\/howtogeek.blog\/nl\/wp-json\/wp\/v2\/media?parent=10993"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/howtogeek.blog\/nl\/wp-json\/wp\/v2\/categories?post=10993"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/howtogeek.blog\/nl\/wp-json\/wp\/v2\/tags?post=10993"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}