How to Fix Windows 11 Taskbar Not Working or Disappearing

The Problem

The taskbar is gone, frozen in place, or icons highlight but do not open anything. Right after a Windows update is the most common timing. It shares the shell stack with the Start menu not opening problem, though sometimes only the bar is affected.

Step 1: Restart Explorer

The taskbar is explorer.exe. Restarting it fixes a large share of cases in five seconds.

  1. Press Ctrl + Shift + Esc for Task Manager.
  2. Find Windows Explorer in Processes → right-click → Restart.

If Windows Explorer is not listed at all, use Run new task → type explorer.exeOK.

The screen will flash and the desktop will redraw. If the taskbar returns but fails again later, work through the rest of this guide.

Step 2: Is It Only Hidden?

  1. Press Win + IPersonalizationTaskbar.
  2. Expand Taskbar behaviors and untick Automatically hide the taskbar.
  3. Check Taskbar alignment is set to Center or Left.
  4. Move the mouse to the very bottom edge of the screen—if the bar slides up, it was only hidden.

Step 3: Full-Screen and Tablet Modes

  • Exit any full-screen application with F11 or Alt + Enter. A game that crashed while full-screen frequently leaves the taskbar suppressed.
  • On a 2-in-1, reattach the keyboard or check SettingsSystemTablet. The tablet-optimised bar looks missing to someone expecting the desktop one.
  • If a video player or browser is stuck in full-screen without visible controls, end that app in Task Manager.

Step 4: Multi-Monitor Cases

  1. SettingsPersonalizationTaskbarTaskbar behaviors.
  2. Check Show my taskbar on all displays and When using multiple displays, show my taskbar apps on.
  3. If a monitor has been unplugged, Windows can still believe the bar lives there. Press Win + PPC screen only, then set your layout again.

Step 5: Disable the Usual Suspects

Widgets and third-party shell add-ons are behind a lot of frozen taskbars.

  1. SettingsPersonalizationTaskbar → turn off Widgets.
  2. Uninstall any taskbar customisation utility—StartAllBack, ExplorerPatcher, Start11 and similar. These hook the shell directly and break with every Windows update; a frozen bar right after Patch Tuesday on a PC running one of them is that utility, not Windows.
  3. Restart Explorer and test.

Step 6: Clear Stale Icon and Shell Caches

A corrupt icon cache produces a bar that paints wrongly or ignores clicks. In Terminal (Admin):

taskkill /f /im explorer.exe
del /a %localappdata%\IconCache.db
del /a /q %localappdata%\Microsoft\Windows\Explorer\iconcache*
start explorer.exe

Step 7: Re-register the Shell Packages

If the bar loads but the tray, clock, or search do not respond, re-register the shell experience components. In Terminal (Admin):

Get-AppxPackage Microsoft.Windows.ShellExperienceHost | Reset-AppxPackage

If that is not enough:

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

Ignore the red errors about packages that cannot be re-registered—they are expected. Restart afterwards.

Step 8: Display Scaling

Odd scaling values break hit-testing, so clicks land next to the icon rather than on it.

SettingsSystemDisplayScale → choose a standard value such as 100%, 125%, or 150% rather than a custom fractional one. Sign out and back in.

Step 9: Graphics Driver

A bad display driver can leave the taskbar painted but unresponsive.

  • Update from Intel, AMD, or NVIDIA—or the laptop maker for hybrid graphics systems.
  • If it started right after a driver update: Device ManagerDisplay adaptersPropertiesDriverRoll Back Driver.
  • For a thorough reinstall: clean install GPU drivers with DDU.

Step 10: Repair System Files and Updates

sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth

Then install any pending updates—Microsoft has shipped fixes for taskbar regressions more than once. If the problem began with a specific patch, remove it: fix Windows 11 after a bad update.

Step 11: Test a New User Account

This separates a broken profile from a broken Windows install.

SettingsAccountsOther usersAdd account → create a local account and sign in.

  • Taskbar works there → your original profile is damaged. Migrating to the new profile is usually faster than repairing the old one. See fix "signed in with a temporary profile".
  • Taskbar broken there too → the installation itself is damaged. Go to the last step.

When to Repair Windows

If a fresh account has the same problem after SFC and DISM, run an in-place repair install from the Windows 11 ISO, choosing Keep personal files and apps. It replaces every system file without touching your data: reinstall Windows without losing data.

Related: fix File Explorer crashing and fix Windows 11 freezing or crashing randomly.