Windows OS Hub
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux

 Windows OS Hub / Windows 11 / Restoring a Missing Windows Update Service in Windows 11 (10)

October 16, 2025

Restoring a Missing Windows Update Service in Windows 11 (10)

Sometimes, you may find computers (typically those running unofficial custom Windows builds) where the Windows Update service has been removed. Let’s look at how to restore the Windows Update service if it has been removed  (this guide is applicable to both Windows 11 and 10).

Open the services.msc MMC snap-in or run the following PowerShell command to verify that the Windows Update service is missing:

Get-Service wuauserv

windows update service (wuauserv) is missing

When you open the Windows Update section of the Settings app, you will see an error:

Something went wrong. Try reopen Settings later.

Error in Settings -> Windows Update - Something went wrong. Try reopen Settings later.

The Windows Update page can be hidden from the Settings app using a GPO.

Without the wuauserv service, the computer won’t be able to receive automatic updates or manually install updates downloaded from the Microsoft Update Catalog.

The following error appears when trying to install an MSU update via the Windows Update Standalone Installer:

Installer encountered an error: 0x80080005
Server execution failed

wusa.exe - Installer encountered an error: 0x80080005 Server execution failed

You can use the DISM command to install an update from a CAB file directly into a Windows image.

Open the regedit.exe and check the HKLM\SYSTEM\CurrentControlSet\Services for a Windows Update service key. In my case, the wuauserv service settings key is missing.

wuauserv missing in registry windows 11

To restore the Windows Update service, import the HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wuauserv key with the default Wuauserv service settings from another computer. Or, you can download the REG file containing Windows Update service settings, suitable for both Windows 11 and Windows 10, from our website via the link wuauserv_settings_win11_original.zip

Extract the archive, then double-click the .REG file and confirm that you want to import the data into the registry.

import reg file with wuauserv settings

Verify that the wuauserv service key has appeared in the registry.

wuauserv service key in registry

Restart the computer and check the list of services to see if the Windows Update service appears.

By default, the Windows Update service (wuauserv) startup type in Windows 11 is “Manual (Trigger Start)“. Enabling automatic startup for it is not necessary.

Set-Service -Name wuauserv -StartupType Manual

Also, check that the following services required for Windows Update are configured to start automatically

# Update Orchestrator Service
Set-Service -Name UsoSvc -StartupType Automatic -Status Running
# Microsoft Update Health Service ( in Windows 10)
Set-Service -Name uhssvc -StartupType AutomaticDelayedStart -Status Running

Try starting the service. In my case, I received an error:

Windows could not start the wuauserv service on Local Computer.
Error 126: The specified module could not be found.

Windows could not start the wuauserv service on Local Computer. Error 126: The specified module could not be found

This error indicates that a service file is missing. In my case, the wuaueng.dll file was missing from the C:\Windows\System32 folder. This file is necessary to start the wuauserv. I had to copy it from another computer with the same Windows version

missing wuaueng.dll file

After this, the Windows Update service started successfully.

Ensure that all the tasks necessary for the Automatic Updates service to function properly are enabled in Task Scheduler. Enable the following scheduled tasks from a PowerShell.exe console running with NT-Authority\SYSTEM privileges (using the psexec.exe tool):

.\PsExec.exe -i -s powershell.exe
$taskPaths = @(
'\Microsoft\Windows\InstallService\*',
'\Microsoft\Windows\UpdateOrchestrator\*',
'\Microsoft\Windows\UpdateAssistant\*',
'\Microsoft\Windows\WaaSMedic\*',
'\Microsoft\Windows\WindowsUpdate\*',
'\Microsoft\WindowsUpdate\*'
)
foreach ($path in $taskPaths) {
Get-ScheduledTask -TaskPath $path | Enable-ScheduledTask
}

Enable the Windows Update-related task in Task Scheduler

After restoring the Windows Update service, it is recommended to reset the wuauserv service settings to their default values using the script-wureset tool.

Reset the windows update compinents using script-wureset tool

Check if Windows can now receive updates via Windows Update.

In some cases, you can use the built-in Windows Update Troubleshooter to resolve update-related issues. It can apply several common WUAUSERV fixes automatically. To run it:

msdt /id WindowsUpdateDiagnostic

Apply automatic repairs via Windows Update Troubleshooter.

Also, use the following commands to check and repair system files in the Windows component store:

Dism.exe /Online /Cleanup-Image /Restorehealth
sfc /scannow

0 comment
0
Facebook Twitter Google + Pinterest
Questions and AnswersWindows 11
previous post
How to Delete a Windows Service via CMD or PowerShell

Related Reading

Configuring RemoteApps Hosted on Windows 10/11 (without Windows...

January 25, 2025

Disable BitLocker Automatic Drive Encryption in Windows 11

October 16, 2024

Bridging Multiple Network Interfaces on Windows

November 21, 2024

Fix: Windows Update Tab (Button) is Missing from...

December 16, 2024

How to Prefer IPv4 over IPv6 in Windows...

April 15, 2025

How to Detect Which User Installed or Removed...

June 25, 2025

Find a Process Causing High Disk Usage on...

July 16, 2025

Change BIOS from Legacy to UEFI without Reinstalling...

April 23, 2025

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • How to Delete a Windows Service via CMD or PowerShell

    October 16, 2025
  • Resource Fair Sharing in Windows Server Remote Desktop Services (RDS)

    October 6, 2025
  • How to Disable (Enable) Credential Guard in Windows 11

    October 6, 2025
  • Wrong Network Profile on Windows Server after Reboot

    September 30, 2025
  • How to Get Windows 10 Extended Security Updates After End-Of-Life

    September 24, 2025
  • Blocking NTLM Connections on Windows 11 and Windows Server 2025

    September 23, 2025
  • Windows Stucks at ‘Getting Windows Ready, Don’t Turn Off Computer’

    September 15, 2025
  • Clean Up ETL Log Files in ProgramData

    September 9, 2025
  • Fix: Slow Startup of PowerShell Console and Scripts

    September 3, 2025
  • DPI Scaling and Font Size in RDP (RDS) Session

    August 27, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Converting Windows 10 to Enterprise LTSC Without Losing Data
  • Permanently Disable Driver Signature Enforcement on Windows 11
  • Fix: Windows Update Tab (Button) is Missing from Settings
  • Fix: Your IT Administrator Has Limited Access to Virus & Threat Protection
  • How to Add or Reinstall the Microsoft PDF Printer on Windows
  • How to Remove ‘Some Settings are Managed by Your Organization’ on Windows 11 or 10
  • Fix: Multiple Connections to a Server or Shared Resources by the Same User
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top