Windows OS Hub
  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux

 Windows OS Hub / Windows 11 / Disable and Completely Remove Widgets from Taskbar in Windows 11

September 26, 2024 Windows 11

Disable and Completely Remove Widgets from Taskbar in Windows 11

Widgets are one of the new user interface elements in Windows 11. They are used to display dynamic information on the desktop, including weather, news, and other information from various sources. By default, the widget icon on the left side of the taskbar shows you the weather. Click this button (or press WIN+W) to open a widget board with mini-apps (news feed, stock quotes, weather information, maps, traffic, sports results, ad recommendations, and more).

Widgets board in Windows 11 taskbar

Most people find widgets an annoying element of the Windows 11 UI. Moreover, some users complain that the widgets.exe main process and its child processes (msedgewebwebview2.exe) increase the average CPU load and use a lot of RAM, even when the computer is not in use.

Windows 11 widget processes: high CPU and RAM usage

Users can disable widgets in the Windows 11 taskbar

  1. Go to Settings -> Personalization -> Taskbar
  2. Slide the Widgets toggle to Off.
    Remove Widgets icon from taskbar on Windows 11

There are also other ways to hide widgets from the Windows 11 taskbar::

  • via registry: reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarDa" /t REG_DWORD /d "0" /f
  • via Group Policy. Open the local GPO management console (gpedit.msc), and navigate to Computer Configuration -> Administrative Templates -> Windows Components -> Widgets. Disable the Allow Widgets policy.
    Disable Windows 11 widgets using Group Policy

However, the widgets will continue to run in the background and you can still open the widgets board by pressing Win+W.

In Windows 11, it is possible to remove the widgets app completely using the WinGet package manager (requires an Internet connection). Run the following command in a command prompt:

winget uninstall "windows web experience pack"

Uninstall widget app (Windows Web Experience Pack) using winget

However, the widget APPX package called MicrosoftWindows.Client.WebExperience_cw5n1h2txyewy may still be installed on other users’ profiles.

To remove a preinstalled Microsoft Store app from other users’ profiles and remove a provisioned package from the Windows image, run the following PowerShell commands

Get-AppxPackage -AllUsers | Where-Object {$_.Name -like "*WebExperience*"} | Remove-AppxPackage -AllUsers -ErrorAction SilentlyContinue
Get-AppxProvisionedPackage -online | Where-Object {$_.Name -like "*WebExperience*"}| Remove-AppxProvisionedPackage -online –Verbose

Remove widgets provisioned APPX package on Windows 11

To get the Windows 11 widgets back, you can reinstall the https://www.microsoft.com/en-us/p/windows-web-experience-pack/9mssgkg348sp APP from the Microsoft Store, or download and install the APPX file manually.
0 comment
8
Facebook Twitter Google + Pinterest
previous post
Configure Kiosk Mode on Windows 11 (Single or Multi-App)
next post
How to Add or Reinstall the Microsoft PDF Printer on Windows

Related Reading

Unable to Map Drive: An extended error has...

May 13, 2025

Map a Network Drive over SSH (SSHFS) in...

May 13, 2025

How to Cancel Windows Update Pending Restart Loop

May 6, 2025

View Windows Update History with PowerShell (CMD)

April 30, 2025

Change BIOS from Legacy to UEFI without Reinstalling...

April 21, 2025

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMware
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • Map a Network Drive over SSH (SSHFS) in Windows

    May 13, 2025
  • Configure NTP Time Source for Active Directory Domain

    May 6, 2025
  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025
  • How to Block Common (Weak) Passwords in Active Directory

    March 25, 2025
  • Fix: The referenced assembly could not be found error (0x80073701) on Windows

    March 17, 2025
  • Exclude a Specific User or Computer from Group Policy

    March 12, 2025
  • AD Domain Join: Computer Account Re-use Blocked

    March 11, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • How to Allow Multiple RDP Sessions on Windows 10 and 11
  • How to Run Program without Admin Privileges and Bypass UAC Prompt
  • Fixing ‘The Network Path Was Not Found’ 0x80070035 Error Code on Windows
  • How to Delete Old User Profiles in Windows
  • How to Install Remote Server Administration Tools (RSAT) on Windows
  • How to Backup and Copy Local Group Policy Settings to Another Computer
  • How to Fix ‘An Operating System Wasn’t Found’ Error on Windows
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top