Windows 11 widgets show 'No content' – fix it now

Widgets board stuck on loading or blank? Two registry edits or a clean reinstall of the Web Experience Pack usually fixes it.

You open the widgets board, and it's just a gray box or a spinning circle. Annoying. Let's skip the theory and get this fixed.

First: restart the Widgets process (quick check)

Open Task Manager (Ctrl+Shift+Esc). Find Widgets in the list. Right-click it and choose End task. That kills the process and Windows restarts it automatically within a few seconds. Check if content loads now. If it does, you're done. If not, move on.

The real fix: two registry edits

This works on Windows 11 22H2 through 24H2. It forces the Widgets service to register itself properly with your Microsoft account.

  1. Press Win + R, type regedit, hit Enter. Click Yes if UAC asks.
  2. Go to this key:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\WindowsFeeds
    If the WindowsFeeds folder doesn't exist, right-click CurrentVersion, choose New > Key, name it WindowsFeeds.
  3. Inside WindowsFeeds, create two new DWORD (32-bit) values:
    • Right-click empty space > New > DWORD (32-bit) Value. Name it EnableFeeds.
    • Double-click EnableFeeds, set Value data to 1, click OK.
    • Create another DWORD named EnableWebFeeds.
    • Set EnableWebFeeds to 1 as well.
  4. Close Regedit.
  5. Restart your PC. After restart, open widgets. You should see news, weather, and your feed.

After you apply those changes and restart, the widgets board should populate within 30 seconds. If it's still blank, proceed to the next step.

Still broken? Reinstall the Web Experience Pack

Sometimes the Widgets app itself gets corrupted. This is especially common after a Windows update (like KB5034843 in February 2024 had a bug that killed widgets for many people).

Open PowerShell as admin (right-click Start > Terminal (Admin)). Run this command:

winget uninstall "Microsoft.Windows.WebExperiencePack"

It'll ask for confirmation. Type Y and press Enter. Wait for the uninstall to finish. Then run:

winget install "Microsoft.Windows.WebExperiencePack"

This pulls the latest version from the Microsoft Store. After it finishes, restart your PC.

This method re-registers everything fresh. I've seen it fix widgets after a failed cumulative update where no registry tweak would touch it.

Why these steps work

The widgets board relies on two things: the Web Experience Pack (a UWP app that manages the feed) and a registry key that tells Windows to actually show your personalized content. The registry edits force the feed service to initialize correctly. The reinstall replaces any corrupted files or missing dependencies. The simple restart of the process works when the service just hung on a bad network response.

You might wonder why Microsoft doesn't include these registry keys by default. They do – but updates sometimes reset or corrupt them. The DWORD values I listed are the exact same ones the OS uses when it's working.

Less common variations

Widgets open but are completely blank (no gray box, just white)

Try clearing the app cache. Open Settings > Apps > Installed apps. Search for Windows Web Experience Pack. Click the three dots > Advanced options. Scroll to Reset and click it. Then click Repair. Restart.

Widgets won't open at all – click does nothing

This is usually a corrupted shortcut. Open PowerShell as admin and run:

Get-AppxPackage *WebExperience* | Reset-AppxPackage

This resets the package without removing it. Wait a minute, then try opening widgets.

Weather widget shows data but news feed is missing

Your Microsoft account might have lost its sign-in. Open widgets, click your profile picture (top right), sign out, then sign back in with the same account. Wait 30 seconds for content to refresh.

Widgets loading very slowly

Check your internet connection. Widgets fetch data from Microsoft's servers. If you're behind a VPN or corporate proxy, the feed might time out. Disable the VPN temporarily to test. If that fixes it, add an exception for *.microsoft.com in your VPN settings.

Preventing this from happening again

Three things I've seen cause widgets to break repeatedly:

  1. Don't use registry cleaners or system optimizer tools. They frequently delete the EnableFeeds and EnableWebFeeds keys because they're marked as 'unused' by the cleaner's database. One run of CCleaner's registry cleaner and you're back to square one. I've seen this happen to three clients in the past year.
  2. Keep Windows updated. I know updates sometimes break things, but Microsoft has patched several widget-related bugs in the 2024 patches. If you're on an older build (before 22621.2361), the widgets code has known issues.
  3. Check your Microsoft account sign-in status every few months. Open Settings > Accounts > Your info. If you see 'Verify your identity', click it and re-authenticate. I set a calendar reminder to do this every three months.

That's it. The registry edits fix 80% of cases. The Web Experience Pack reinstall fixes the other 20%. Both are fast and reversible. If you still have problems after both steps, you might be dealing with a deeper system file corruption – run sfc /scannow in an admin command prompt, then restart.

Related Errors in Windows Errors
0X000036F2 SXS XML_E_RESERVEDNAMESPACE 0X000036F2 Fix 0x80070002 Fix Windows Error 0x80070002 Fast, No Reinstall Needed 0X80280032 Fix TPM_E_NOTRESETABLE (0X80280032) in Windows 0XC023002F STATUS_NDIS_LOW_POWER_STATE (0xC023002F) fix for network adapters

Was this solution helpful?

EP
Erropedia Team
Tech Support Editors
The Erropedia editorial team researches and documents real-world tech errors from across Windows, Linux, macOS, networking, databases, cloud platforms, and more. Every solution is reviewed for accuracy and updated as software and systems evolve.