How to Restart Services Connected to Windows Update – 2025

June 26, 2025

0
(0)

How to Restart Services Connected to Windows Update

If you’re experiencing problems updating your Windows operating system—such as stuck updates, error codes, or failure to install—it could be due to malfunctioning Windows Update services. Restarting these services is one of the most effective ways to fix common update issues in both Windows 10 and Windows 11.

This comprehensive guide will walk you through the steps to properly restart Windows Update-related services and ensure your system can download and install updates correctly.

Why You Might Need to Restart Windows Update Services

The Windows Update process depends on several background services. These include the Windows Update Service, Background Intelligent Transfer Service (BITS), Cryptographic Services, and more. If any of these services are not working properly, you might encounter:

  • Windows Update getting stuck at a specific percentage

  • Update error codes like 0x80070002, 0x8024a105, or 0xc1900101

  • Updates downloading but not installing

  • Failure to check for new updates

Manually restarting the services can refresh these components and resolve issues that automatic troubleshooting tools may not fix.

Restart Services Connected

Before restarting anything, it’s useful to know which services are involved:

  1. Windows Update (wuauserv) – Handles update checking, download, and installation.

  2. Background Intelligent Transfer Service (BITS) – Transfers update data in the background.

  3. Cryptographic Services (cryptsvc) – Validates Windows update signatures.

  4. Windows Installer (msiserver) – Sometimes required for installing updates or patches.

  5. DCOM Server Process Launcher

  6. RPC Endpoint Mapper

Now let’s walk through how to restart them using three different methods.

Method 1: Restart Services Using Command Prompt

Restart Services Connected

This is the most efficient method for restarting multiple services quickly.

Steps:

  1. Press Windows + S, type cmd, right-click Command Prompt, and select Run as administrator.

  2. In the Command Prompt window, enter the following commands one at a time:

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

These commands stop the update-related services. After stopping them, delete temporary update files by entering:

mathematica
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old

Now, restart the services by entering:

sql
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
  1. Close the Command Prompt and restart your computer.

This method clears cached update data and resets services, allowing updates to start fresh.

Method 2: Restart Services Using Services App

Restart Services Connected2

If you’re more comfortable with a graphical interface, you can restart update services manually through the Services app.

Steps:

  1. Press Windows + R, type services.msc, and press Enter.

  2. In the Services window, find each of the following services:

    • Windows Update

    • Background Intelligent Transfer Service

    • Cryptographic Services

    • Windows Installer (if available)

  3. Right-click each service and select Stop. After all have stopped, wait for a few seconds.

  4. Now, right-click each again and choose Start.

Make sure the Startup type is set to Automatic or Manual—not Disabled. If needed, double-click the service and adjust the startup settings.

Method 3: Restart Using a Batch File (Advanced Users)

Restart Services Connected3

If you often troubleshoot Windows Update, you can create a batch file to automate the process.

How to create the batch file:

  1. Open Notepad

  2. Copy and paste the following script:

bash
@echo off
echo Stopping services...
net stop wuauserv
net stop bits
net stop cryptSvc
net stop msiserver
echo Deleting cache...
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
echo Starting services...
net start wuauserv
net start bits
net start cryptSvc
net start msiserver
echo Done.
pause
  1. Save the file as Reset_WU.bat

  2. Right-click the file and select Run as administrator

This script automates the process of restarting all major Windows Update services.

What to Do If Services Don’t Restart or Respond

Restart Services Connected4

If you encounter issues restarting any of the services:

  • Make sure you are logged in as an administrator

  • Reboot your PC into Safe Mode with Networking and try again

  • Use the Windows Update Troubleshooter:

    • Go to Settings > Update & Security > Troubleshoot > Additional troubleshooters

    • Select Windows Update and run the troubleshooter

Additional Tips for Smooth Windows Updates

Here are some best practices to avoid future problems with Windows Update:

  • Keep your antivirus software up to date, but temporarily disable it if it interferes with updates

  • Ensure your system drive (usually C:) has at least 10 GB of free space

  • Avoid turning off your PC while an update is being installed

  • Only use trusted third-party tools to manage updates

When Should You Consider Resetting Windows Update Completely?

If restarting services does not help, and updates still fail repeatedly, consider resetting Windows Update components completely using the Windows Update Reset Tool or DISM and SFC commands:

  1. Open Command Prompt as administrator

  2. Run:

    bash
    sfc /scannow
  3. Then run:

    swift
    DISM /Online /Cleanup-Image /RestoreHealth

These commands scan and repair Windows system files that may be preventing updates from completing.

Conclusion

Restarting Windows Update-related services is a highly effective way to resolve a wide variety of update problems on Windows 10 and Windows 11. Whether you’re facing slow updates, stuck installations, or persistent error codes, refreshing these core services can often get things moving again.

Summary of Methods:

  • Use Command Prompt to stop and restart key services

  • Use the Services app for a GUI approach

  • Automate the process with a batch file

  • Clear the SoftwareDistribution and Catroot2 folders

  • Use DISM and SFC if deeper problems exist

With the right steps, you can restore your system’s ability to update smoothly and maintain optimal performance.

How useful was this guide?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.

Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted