How to fix error code 80072EFE

Nicolette Morgan 0 Reputation points
2026-09-19T07:16:28.4033333+00:00

Hi,

How do I resolve this error code 80072EFE?

Regards,

Windows for home | Windows 10 | Windows update
0 comments No comments

2 answers

Sort by: Newest
  1. Volume Z 1,765 Reputation points Volunteer Moderator
    2026-09-20T02:17:23.11+00:00

    Simply spoken the solution to this is downloading and installing KB3138612. Then again enabling the TLS 1.2 protocol, as suggested in your other thread, will fix this on the side.

    Was this answer helpful?

    0 comments No comments

  2. AI answer

    2026-09-19T07:16:47.84+00:00

    Error 0x80072EFE in Windows Update usually means the connection to Windows Update servers is being interrupted. The documented causes are:

    • TLS/cipher suite issues
    • Network or proxy configuration issues

    Try this in order:

    1. Review the Windows Update log
      Check for repeated 80072EFE failures in: %windir%\logs\windowsupdate
    2. Check whether Microsoft sites fail while other sites work
      If general internet access works but Microsoft links fail with a TLS-related error, the issue is likely TLS or cipher suite configuration.
    3. Verify TLS 1.2 is enabled
      Open an elevated Command Prompt and run:
         reg query HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server
      
      Confirm these values:
         Enabled    REG_DWORD    0x1
         DisabledByDefault    REG_DWORD    0x0
      
      If TLS 1.2 is disabled, change it to 0x1.
    4. Check cipher suite configuration
      Look at this registry key: HKLM\SOFTWARE\Policies\Microsoft\Cryptography\Configuration\SSL\00010002 Ensure at least one of these cipher suites is present:
      • TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
      • TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA256
    5. Adjust cipher suite order if needed
      Warning: editing the registry can affect secure connectivity system-wide.
      • Press Windows key + R, type regedit, and press Enter.
      • Go to: HKLM\SOFTWARE\Policies\Microsoft\Cryptography\Configuration\SSL\00010002
      • If the required cipher suites exist but are low in the list, move them higher.
      • If one is missing, add it manually.
    6. Restart the PC
      A restart is required after cipher suite changes.
    7. Try Windows Update again
      Open Settings > Update & Security > Windows Update > Check for updates.
    8. If this started after policy changes, test for GPO-related SSL settings
      Warning: removing policy-controlled SSL settings can change security behavior. Check for:
         reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Cryptography\Configuration\SSL\XXXXXXXX"
      
      If present, documented troubleshooting is to delete the contents inside that XXXXXXXX hive/folder to test whether Group Policy is causing the issue.
    9. Check network filtering
      If a firewall, proxy, or network appliance is in the path, make sure it is not blocking Microsoft download URLs and that ports 80 and 443 are open.

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.