We Couldn't Connect to Windows 11 Update Service: 8 Fixes

Fix “we couldn’t connect to the update service Windows 11” error with 8 proven fixes: restart services, clear update cache, disable VPN, check proxy.

You click Check for updates, and there it is again — the same message you've now stared at five times this afternoon: “We couldn’t connect to the update service. We’ll try again in a few minutes.”

Except it doesn’t try again in a few minutes. Not after five retries, not after fifty. Settings just loops the same orange wall of text back at you, and you're no closer to an updated machine.

The “we couldn’t connect to the update service windows 11” error is one of the most misleading messages Microsoft has shipped in years. Your PC is clearly online — websites load, email syncs, video calls connect. Yet Windows Update insists it can't reach its own servers.

After 15-plus years of untangling Windows Update failures, I can tell you what this almost never is: a hardware problem. It's a blocked or corrupted update pipeline — a stopped update service, a stale Windows Update cache, a VPN that left behind a phantom proxy, or the 0x80072efe network error hiding in your Event Viewer.

The good news? Most home users clear this in under 15 minutes using just the first few fixes below. Here's the repair order that actually works.


A close-up photo of a computer screen showing the settings button with a cursor hovering over it.

Why Does the “Windows 11 Update Service Connection Error” Appear?

Think of Windows Update not as one program but as a three-person delivery crew:

  • Windows Update service (wuauserv) takes the order and coordinates the job.
  • Background Intelligent Transfer Service (BITS) truck the files across the internet and manages download pacing.
  • Cryptographic Services (CryptSvc) inspects each package for valid signatures before Windows trusts it.

If any one of those three is disabled, stopped, or corrupted, the client reports that it "cannot connect to the update service" — even though the actual problem has nothing to do with your internet connection.

A reachable internet connection also doesn't mean the update endpoints are reachable. Active VPN tunnels route traffic through remote gateways, which are sometimes fine for general browsing but broken for Microsoft's update domains. The same goes for stale proxy entries left behind by security tools, overzealous firewall rules, and DNS servers that can't resolve *.windowsupdate.com properly.

In my experience, this windows 11 update service connection error tends to appear in four recurring scenarios:

  1. Right after someone used the Media Creation Tool for a repair upgrade.
  2. On corporate PCs redirected to an internal WSUS server.
  3. On used business laptops with leftover group policy from a previous employer.
  4. After an antivirus suite "optimized" Windows Update components and broke them.

Technically, the failure usually maps to error 0x80072efe in the event logs, which Windows translates to ERROR_INTERNET_CANNOT_CONNECT. If you've seen that hexadecimal string in the Event Viewer, the fixes below are precisely what you need.


A close-up photo of a computer screen showing the settings button with a cursor hovering over it.

Windows 11 Update Service Not Running? Start With These Quick Checks

Before you go deep, let's steal 30 seconds for the cheap fixes. You'd be surprised how often they end the whole saga.

  1. Restart the PC, reopen Windows Update, and click Check for updates. Transient service locks die on reboot.
  2. Press Win + R, type services.msc, find Windows Update, and check that its Startup type is Automatic and it isn't stopped — more on that below.
  3. Open the Get Help app, type Windows Update, and run the automated troubleshooter. Windows 10 users: it lives under Settings > Update & Security > Troubleshoot > Windows Update instead.

If that message is still mocking you, move to the real fixes. The good news: these go from least to most invasive, so you're never running repair commands you don't need.


Fix 1: Run the Windows 11 Update Repair Tool From the Get Help App

Microsoft's first line of defense on Windows 11 is no longer the old Settings troubleshooter — it's the Get Help app. Open it from Start, search for Windows Update, and follow the guided flow.

This windows 11 update repair tool checks three things automatically:

  • Whether wuauserv and its related services are disabled.
  • Whether your update cache is corrupted.
  • Whether network components are blocking the connection.

It's Microsoft's official diagnostic, not some third-party utility that wants your credit card. Let it run, reboot, then head back to Settings > Windows Update and try again.

If the error repeats, the problem is either too tangled for the automated path or sitting in a component the troubleshooter doesn't touch. We'll hit those directly.


Fix 2: Restart the Windows 11 Update Service and Related Services

Let's get hands-on. The Windows Update service itself sometimes loses its mind — stuck in a state that looks "Running" in Services but isn't functioning. The fix is to stop and restart the whole dependency chain.

Open services.msc (Win + R, type it, hit Enter), then locate:

  • Windows Update (wuauserv) — set Startup type to Automatic if it's disabled, then click Start.
  • Background Intelligent Transfer Service (bits) — restart it.
  • Cryptographic Services (CryptSvc) — restart it.
  • Windows Installer (msiserver) — restart it too.

If you'd rather not click around six dialog boxes, open an elevated Command Prompt or Terminal and run:

net stop wuauserv
net stop bits
net stop cryptsvc
net start wuauserv
net start bits
net start cryptsvc

If you see error 0x80070422 on your screen, this is your fix — that code means the Windows Update service is disabled or stopped on this machine.

After the services are running, retry Windows Update before you escalate. If it still fails, we reset the whole update mechanism.


Fix 3: Reset Windows 11 Update Service Components (And Clear the Update Cache)

This is the big one. Resetting Windows 11 update service components clears out the corrupted SoftwareDistribution folder (where Windows stores downloaded updates) and rebuilds the update machinery from scratch. It resolves more "can't connect to the update service" loops than any other single fix I know.

Right-click Start, open Terminal (Admin), and run this sequence, letting each command finish before the next:

net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver

With those services stopped, rename — don't delete — the update folders:

ren %systemroot%\SoftwareDistribution SoftwareDistribution.old
ren %systemroot%\System32\catroot2 catroot2.old

Then restart the services:

net start wuauserv
net start cryptSvc
net start bits
net start msiserver

Reboot, and try Windows Update again.

A few notes from the field. Renaming catroot2 while Cryptographic Services is still running will produce "access denied" or leave you with a corrupted catalog, so respect the order above. And keep the .old folders around — once updates are installing normally for a week, delete them to reclaim space.

This procedure is exactly why so many repair guides tell you to clear the Windows Update cache: the cache itself is often the source of the corruption.


Fix 4: Turn Off VPN and Check Proxy Server Settings, Firewall Rules, and DNS

Still stuck? Time to interrogate the network path. What's good for browsing isn't always good for Windows Update.

Disconnect the VPN first. I've had clients spend an entire afternoon running component resets, only to discover that their corporate VPN silently routed update traffic to a dead endpoint. Kill the VPN, retry, and if updates flow — that was the culprit. If you need the VPN for work, you can always re-connect after updates finish.

Next, check for a ghost proxy:

  1. Open Settings > Network & Internet > Proxy.
  2. Confirm no unwanted manual proxy is enabled.
  3. Look hard at the "Use setup script" option — VPN apps and security suites often leave one behind when they unload.

Third, check firewall rules and security software. Windows Defender usually behaves; third-party suites with "web filtering" or "intrusion protection" frequently block the update service. Temporarily disable the protection once and test a single update. Re-enable it right after.

Then flush DNS and consider switching resolvers:

ipconfig /flushdns

If your router is handing out flaky DNS servers, switch to a public resolver like 8.8.8.8 or 1.1.1.1 — change it in Settings > Network & Internet > Wi-Fi > hardware properties > DNS server assignment.

If none of that works and you've exhausted the service-level fixes above, the nuclear network option is Settings > Network & Internet > Advanced network settings > Network reset. Fair warning: it wipes your saved Wi-Fi networks and reconfigures your network stack, so clear a few minutes for reconnecting everything afterward.


Fix 5: Fix Windows 11 Update Service Corruption With SFC and DISM

Sometimes the problem isn't the network or the services — it's the Windows component store itself. When system files that the update service depends on are corrupted, the service can fail before its first network request.

Open Terminal (Admin) and run this first:

DISM.exe /Online /Cleanup-Image /RestoreHealth

Let it finish. Microsoft's documentation says a successful run reports either “The restore operation completed successfully” or “The operation completed successfully.” If you see neither, run it again; DISM sometimes needs a second pass.

Then verify system file integrity:

sfc /scannow

Wait for the scan to reach 100%. If SFC reports corrupted files it couldn't fix, rub two sticks together — run DISM once more, then repeat SFC.

Reboot and try Windows Update. This combo repairs the component-store corruption that produces the update-service connection failure when the network is perfectly fine.


Fix 6: If the Windows 11 Update Service Is Not Connecting on a Work PC, Check WSUS

Here's the scenario nobody else's guide covers well — because it's invisible on a home machine.

On company-managed devices, Windows Update is often redirected to an internal WSUS server through the Group Policy setting Specify intranet Microsoft update service location. If that server is unreachable, or if a used business laptop still carries policy from its former employer, the client shows the exact same “couldn't connect” message. Your internet works; your update service isn't even looking at the internet.

If you have an IT department, ask them first, before changing anything — corporate policy is corporate policy. If you're a home user with a secondhand business PC, check this yourself.

Run this in an elevated Command Prompt:

reg query "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v UseWUServer

A value of 1 means the machine is still trying to reach a WSUS server. If the PC is no longer domain-managed, delete the UseWUServer value or set it to 0, restart the Windows Update service (grab Fix 2 for the commands), and retry.

Also worth a quick trip through gpedit.msc: Computer Configuration > Administrative Templates > Windows Components > Windows Update > Specify intranet Microsoft update service location. If it's Enabled without a legitimate WSUS behind it, set it to Not configured.


Fix 7: “We Couldn’t Connect to the Update Service” After a Windows 11 Media Creation Tool Upgrade

A distinctive version of this problem shows up immediately after a Media Creation Tool repair upgrade. You ran the in-place upgrade to fix some unrelated drama, it kept your apps and files, and now Windows Update refuses to connect. Every time. On a fresh install.

What happened? The upgrade left service startup states, the update cache, or the component store in an inconsistent state. It's not hardware, and it's not your imagination.

Run the 30-second checklist at the top, then apply Fix 3 (component reset) and Fix 5 (DISM + SFC) in that order. This combination resolves most post-upgrade connection failures I've seen.

If the error survives both, do the one thing nobody wants to hear: run the Media Creation Tool in-place upgrade once more. It sounds redundant, but a second pass often heals the state the first pass corrupted. And if your patience is gone, jump straight to Fix 8 — it'll at least get the pending update installed while you troubleshoot at leisure.


Fix 8: Bypass the Windows 11 Update Service Error With a Manual Update Download

When you need a specific security patch now and Windows Update won't cooperate, you can sidestep the service entirely.

  1. Open Settings > Windows Update and note the KB number of the update that keeps failing — for example, KB5037771.
  2. Head to the Microsoft Update Catalog at catalog.update.microsoft.com and search for that KB.
  3. Download the .msu file that matches your system architecture — for almost all Windows 11 PCs, that's x64.
  4. Double-click the downloaded file and follow the prompts. Reboot even if the installer doesn't ask.

This doesn't repair the underlying connection problem, but it gets the critical update on your machine today. You can troubleshoot the root cause at a saner hour.


0x80072efe and 0x800f0831: Decoding Windows 11 Update Service Error Codes

The message is the same, but the underlying cause changes depending on the hex code sitting next to it. Read the code before you pick the fix.

  • 0x80072efeERROR_INTERNET_CANNOT_CONNECT. This one says a network layer is the problem. Apply Fix 4 first: VPN off, proxy checked, DNS flushed. If a corporate device, also glance at Fix 6 before assuming it's your home network.
  • 0x80070422 — The Windows Update service is disabled or stopped. That's Fix 2, exactly and immediately.
  • 0x80240034 — An incomplete update or connection hiccup interrupted the process. Run the troubleshooter, verify services are running, then retry. If it recurs, Fix 3's component reset usually clears the partial state.
  • 0x800f0831 — A component-store and servicing error that frequently rides along with the connection message. Run DISM and SFC from Fix 5 first, then reset update components from Fix 3 if the error persists.

Every so often, Windows 11 shows only the human-readable message with no error code at all. When that happens, don't guess — work through the fixes in the order they appear here, and you'll land on the right one within a few minutes.


Frequently Asked Questions

Why does Windows 11 keep saying “We couldn’t connect to the update service” even when I’m online?

Because general internet connectivity and the Windows Update connection pipeline are different things. The update service can't connect when Windows Update (wuauserv), BITS, and Cryptographic Services are stopped or corrupted, when the update cache is damaged, when a VPN or proxy blocks the update endpoints, or when leftover WSUS policy on a used business PC redirects the request to a dead server. Run the quick checklist above, then try Fix 2 before Fix 3.

How do I restart the Windows Update service in Windows 11?

Open services.msc, find Windows Update (wuauserv), and click Restart — or run net stop wuauserv && net start wuauserv from an elevated terminal. For a reliable connection, also restart BITS, Cryptographic Services, and Windows Installer, since Windows Update depends on all of them.

Can a VPN or proxy server settings cause error 0x80072efe on Windows 11?

Yes. VPN tunnels can route Windows Update traffic to an unreachable remote gateway, and many VPN apps leave a stale system proxy entry behind when they exit, even though you're "not using" the VPN anymore. Turn off the VPN, open Settings > Network & Internet > Proxy to clear any leftover script or manual proxy, flush DNS with ipconfig /flushdns, and retry.

How do I fix error 0x800f0831 on Windows 11?

Run DISM.exe /Online /Cleanup-Image /RestoreHealth, then sfc /scannow, from an elevated terminal. DISM repairs the component store first, since SFC depends on it; if the error persists, reset the update components with Fix 3.

Why won’t Windows let me update to Windows 11?

That depends on which message you actually see. The update-service connection message means the update pipeline is broken and the fixes in this article apply. But if you're seeing “This PC can't run Windows 11,” that's a hardware compatibility gate — TPM 2.0, a supported CPU, and adequate RAM/disk. No software fix bypasses that, and the PC Health Check app from Microsoft is the tool of record.


Bottom line. Clicking Check for updates and watching it fail, repeatedly, on a perfectly good internet connection ranks somewhere between a puzzler and a personal insult. But a clean installation is almost never the answer. In the majority of cases, this error dissolves with service restarts, a component reset, or a network check — none of which cost you your files, your apps, or your sanity.

If you're on a PC that says “we couldn't connect to the update service windows 11” and this guide got you sorted (or didn't), drop a comment with your Windows 11 build, the exact error code if you saw one — 0x80072efe, 0x800f0831, no code at all — and whether you're on a home or company machine. Between us, we can usually pinpoint the single most effective fix. And if you're a Windows 10 veteran reading this because the same message appeared there, the same repair order gets you there too — just note that the automated troubleshooter hides under Settings > Update & Security > Troubleshoot > Windows Update, not in the Get Help app.

← Back to Home