Quick fix: Open Settings → System → Notifications. Ensure top toggle Notifications is On. For each app: click its row, toggle on Show notifications in notification center. If still empty, restart Windows Push Notifications service: net stop WpnService && net start WpnService.
An app produces a notification — toast popup appears for a few seconds — but the Notifications center stays empty. You can’t review missed notifications. The cause: either notifications are configured to bypass the center, or the Windows Push Notification Service has stopped.
Affects: Windows 11 (and Windows 10).
Fix time: ~5 minutes.
What causes this
Windows distinguishes between notification banners (toast popups) and notification center (the persistent list). Each app has independent settings for both. If only banners are enabled, notifications appear but vanish without staying in the center.
Service-side cause: Windows Push Notification Service (WpnService) handles delivery to the center. If the service is stopped or stuck, notifications don’t accumulate.
Method 1: Enable notification center display per app
The standard fix.
- Open Settings → System → Notifications.
- Confirm the master Notifications toggle (top of page) is On.
- Scroll to Notifications from apps and other senders.
- For each app you want in the center: click the app’s row to expand options.
- Toggle on Show notification banners (for toast popups).
- Toggle on Show notifications in notification center (for the persistent list).
- Repeat for each app that should appear in the center.
- Close Settings. Trigger a test notification from a configured app. It should now both pop a banner AND appear in the center.
This is the most common fix. Many users disable “Show in notification center” thinking it’s redundant with banners.
Method 2: Restart Windows Push Notifications service
For when notifications are configured correctly but still don’t accumulate.
- Open Terminal (Admin).
- Restart the service:
net stop WpnService net start WpnService - Verify:
Get-Service WpnService | Format-Table Name, Status, StartType. Should show Running, Automatic. - Also restart the user-mode counterpart:
net stop WpnUserService_*(where * is your session ID). Then start it:net start WpnUserService_*. - Sign out and sign back in. The user-mode notification service starts fresh.
- For deeper repair: open Registry Editor →
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WpnUserService. Verify Start value is 2 (Automatic). If 4 (Disabled), change to 2.
This handles service-side issues.
Method 3: Reset notification database
For corrupt notification cache.
- Open Terminal (Admin).
- Stop WpnUserService entirely:
Get-Service WpnUserService_* | Stop-Service -Force - Navigate to
%LocalAppData%\Microsoft\Windows\Notifications. Deletewpndatabase.dbandwpndatabase.db-shm,wpndatabase.db-wal. - Restart the service:
Get-Service WpnUserService_* | Start-Service - Sign out and sign back in. The notification database rebuilds from scratch.
- For Windows update reset: Microsoft Store apps’ notifications are tied to the Windows Notification Platform package. Reset via PowerShell:
Get-AppxPackage Microsoft.Windows.ShellExperienceHost | Reset-AppxPackage - Reboot. Try notifications from various apps — should accumulate in center.
This is the nuclear option for badly corrupted notification state.
How to verify the fix worked
- Trigger a test notification (e.g., Outlook desktop alert, Spotify notification, Microsoft Store update).
- Banner pops up. After it fades, click the system tray clock to open Notifications. The notification should appear in the center.
- Multiple notifications accumulate over time; clicking each opens the source app.
If none of these work
If notifications still don’t reach the center, the cause may be one of: Focus mode is on: Focus may be blocking notifications from reaching the center. Settings → System → Focus → turn off Focus or configure Priority Notifications to include the app. App is configured to bypass: some apps explicitly opt out of the center (one-time alerts, calls). For Teams: Settings → Notifications → per-channel control. Re-enable. For Microsoft 365 desktop apps: notifications are routed through Outlook’s own system, not Windows’. Configure within Outlook. For Edge web notifications: each site has its own notification permission. Visit the site, click padlock icon → Notifications → Allow. For corporate-managed PCs: Group Policy may restrict notification center. Run gpresult /h C:\gpresult.html — look for User Configuration → Administrative Templates → Start Menu and Taskbar → Notifications settings. Contact IT.
Bottom line: Settings → System → Notifications → per-app → tick Show notifications in notification center. If service-side, restart WpnService. The center starts collecting notifications.