Quick fix: Open Settings → Personalization → Taskbar. Toggle Widgets off. The widgets icon disappears from the taskbar. To remove fully (free disk + RAM): uninstall Windows Web Experience Pack via PowerShell Get-AppxPackage *WebExperience* | Remove-AppxPackage.
The Widgets panel (weather, news, stocks — left edge of taskbar) takes up space and pops open accidentally on mouse hover. Many users want it removed. Toggle in Settings, or full uninstall for power users.
Affects: Windows 11.
Fix time: ~3 minutes (toggle) or ~10 minutes (full uninstall).
What causes this
Widgets is a Microsoft-pushed feature showing weather, news, sports, and other personalized content. It’s tied to a Microsoft Account when signed in. Disabling via Settings hides the taskbar icon but Windows Web Experience Pack stays installed. Full uninstall removes the package entirely — recovers ~50 MB RAM and 100 MB disk.
Method 1: Disable Widgets via Settings
The simple toggle.
- Open Settings → Personalization → Taskbar.
- Toggle Widgets off.
- The widgets icon (weather emoji) disappears from taskbar.
- Hovering the left side of taskbar no longer opens the Widgets panel.
- To re-enable: toggle on. Widgets returns.
- For PCs where Widgets toggle is missing: Settings → Privacy & security → For developers → tick “Show settings to disable insider features.” Sometimes restores hidden toggles.
This is the cleanest path. Widgets stays installed but hidden.
Method 2: Uninstall Widgets entirely via PowerShell
For removing the package.
- Open Terminal (Admin).
- Identify the package:
Get-AppxPackage *WebExperience*Returns “MicrosoftWindows.Client.WebExperience” or similar.
- Remove for current user:
Get-AppxPackage *WebExperience* | Remove-AppxPackage - For all users:
Get-AppxPackage -AllUsers *WebExperience* | Remove-AppxPackage -AllUsers - Restart Windows Explorer: Task Manager → right-click Windows Explorer → Restart.
- Widgets icon and panel removed. Win+W shortcut no longer opens anything.
- For provisioned (auto-installs for new users):
Get-AppxProvisionedPackage -Online | Where-Object DisplayName -like "*WebExperience*" | Remove-AppxProvisionedPackage -Online. - Windows feature updates may re-install Widgets. Re-run the removal commands as needed.
This is the right path for full removal.
Method 3: Block Widgets via Group Policy
For PCs that need policy-level enforcement.
- Open Group Policy Editor (
gpedit.msc). Windows 11 Pro/Enterprise only. - Navigate to Computer Configuration → Administrative Templates → Windows Components → Widgets.
- Open Allow widgets. Set to Disabled. Apply.
- Run
gpupdate /force. - For Windows 11 Home (no gpedit): registry equivalent at
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Dsh→ DWORD AllowNewsAndInterests = 0. - Sign out and back in for changes to apply.
- Widgets is now disabled by policy. Settings toggle becomes greyed out.
This is the right path for corporate IT.
How to verify the fix worked
- Widgets icon no longer appears in taskbar.
- Hovering left edge of taskbar doesn’t trigger widgets panel.
- Win+W keyboard shortcut does nothing (if Method 2 applied).
- Resource Monitor shows no
Widgets.exeprocess.
If none of these work
If widgets keep coming back: Feature update reinstalls Widgets: re-run Method 2 after each major Windows update. For Group Policy override: corporate PCs may have policy forcing widgets. Contact IT. For consumer PCs where Settings toggle reverts: Microsoft re-enables in some Windows 11 22H2+ builds. Reapply Method 1. For accidental taskbar pop-up from hover: also check Settings → Personalization → Taskbar → Taskbar behaviors → verify widgets hover is disabled. For partial removal (icon gone but processes running): Task Manager → End task for widget processes (Widgets.exe, msedgewebview2.exe with widgets context). Method 2 prevents auto-start.
Bottom line: Settings → Personalization → Taskbar → toggle Widgets off. For full removal: PowerShell Get-AppxPackage *WebExperience* | Remove-AppxPackage. Group Policy for enterprise.