Share via

Settings and Taskbar not responding (Windows 11)

Felix Hu 75 Reputation points
2026-02-07T15:41:52.5466667+00:00

Hi everyone, I’m experiencing issues with both the taskbar and the Settings app, and I’m not sure if they’re related.

Taskbar issue: When I click the Windows Start button (on the taskbar or keyboard), the cursor shows a brief loading icon, but the Start menu doesn’t open. I have to use right-click to search for apps. Other features like volume, calendar, and Wi-Fi/Bluetooth also don’t open their panels. However, pinned apps, the system tray, and language options work normally.

Settings app issue: The Settings app crashes shortly after launch. It opens for 2–3 seconds showing only the Settings logo, then closes.

I’ve restarted Windows Explorer, run sfc /scannow in admin PowerShell with no errors found, and rebooted the PC multiple times. Are there any other solutions that don’t require resetting Windows or losing files?

Windows for business | Windows 365 Business
{count} votes

Answer accepted by question author
  1. Jason Nguyen Tran 12,640 Reputation points Independent Advisor
    2026-02-07T16:22:23.4733333+00:00

    Hi Felix Hu,

    As a first step, I recommend running the DISM tool to repair the Windows image. Open PowerShell as administrator and run:

    DISM /Online /Cleanup-Image /RestoreHealth
    

    This often resolves deeper issues that sfc /scannow alone cannot fix.

    If the problem persists, you can re-register the Start menu and Settings components by running the following command in PowerShell (admin):

    Get-AppxPackage -AllUsers Microsoft.Windows.StartMenuExperienceHost | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"}
    

    For the Settings app, you can similarly re-register with:

    Get-AppxPackage -AllUsers Microsoft.Windows.immersivecontrolpanel | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"}
    

    Additionally, please ensure that the latest cumulative updates for Windows 11 are installed, as Microsoft has released fixes for Start menu and Settings reliability in recent patches. If these steps don’t resolve the issue, creating a new local user profile can help determine if the problem is account-specific.

    I hope these steps help restore full functionality to your taskbar and Settings app without requiring a reset. If you find this answer helpful, please consider clicking Accept Answer so others can benefit too.

    Jason.


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.