How to fix error 0x80070422 in Windows 10, fix error 0x80070422 update Win

Error code 0x80070422 is commonly encountered by users who are trying to apply the latest updates. The problem can also arise when they upgrade from a previous version of Windows to a newer version (for example from Windows 8 to Windows 10 ), as well as while trying to update or download apps from the Microsoft Store.

Updates are essential not only for bug fixes, performance and stability improvements, but also to patch critical vulnerabilities. Therefore, persistent errors (like 0x80070422) that prevent Windows updates from being applied can cause serious security issues.

Follow the steps in the guide below to fix error 0x80070422 in Windows 10.

Table of Contents

1. What is Windows error 0x80070422?

Before we get into the troubleshooting steps, it’s worth mentioning what error 0x80070422 in Windows 10 means. As it turns out, this is usually a Windows Update error.

When the error occurs, any pending Windows updates will not install correctly. You may see a message like “ There were some problems installing updates ” or “ Windows Update is disabled ” in the Windows Update control panel when the error occurs.

How to fix error 0x80070422 in Windows 10, fix error 0x80070422 update Win
Windows Error 0x80070422

This error prevents you from updating your computer properly, which can lead to security issues if left unchecked. Since you expect Windows Update to run smoothly in the background, Windows Update errors are very annoying.

Luckily, this error isn't too difficult to fix, as it has a common cause.

2. Restart your PC

While this is general advice for all errors, it is important to restart your computer before continuing to troubleshoot. Restarting can often resolve temporary issues, so you don't have to waste time troubleshooting a problem that has an easy fix.

How to fix error 0x80070422 in Windows 10, fix error 0x80070422 update Win
Restarting can often solve temporary problems.

After restarting, try installing the latest updates again at Settings > Update & Security > Windows Update . If you see the error again, continue with the methods below. Remember that restarting after performing each step below is also a good idea.

3. Run Windows Update Troubleshooter

It is true that users may encounter some errors when dealing with different situations on the Windows operating system. This is because the operating system is highly customizable and the reasons for the 0x80070422 error may vary from system to system. Fortunately, Microsoft has provided many built-in tools that can help users resolve some issues on their own. Therefore, the first attempt to fix the 0x80070422 error is to try running the Windows Update troubleshooter:

  • Right-click the Start button and select Settings.
  • Select Update & Security .
  • On the left panel, click Troubleshoot.
  • Click Windows Update and then select Run the troubleshooter .
How to fix error 0x80070422 in Windows 10, fix error 0x80070422 update Win
Click Windows Update and then select Run the troubleshooter
  • Wait until Windows finishes diagnosing the problems and suggesting methods to fix them.

4. Disable IPv6 connectivity

If the previous method doesn't help, you can try disabling IPv6, which is the most recent version of the Internet Protocol (IP). Some people have reported that disabling IPv6 helps resolve error 0x80070422:

  • Right-click the Start button and select Network Connections.
  • Scroll down a bit and select Change adapter options .
How to fix error 0x80070422 in Windows 10, fix error 0x80070422 update Win
Select Change adapter options
  • Right-click on Ethernet (or whatever other connection you are using) and select Properties.
  • Find Internet Protocol Version 6 (TCP/IPv6) and uncheck it.
  • Click OK.
How to fix error 0x80070422 in Windows 10, fix error 0x80070422 update Win
Click OK

Disabling IPv6 also helps to fix Internet connection problems on Windows computers .

5. Set Windows Update Service to start automatically

You need to make sure you are logged in with admin rights before performing the following actions:

  • Type services.msc in the search box or Run dialog box by pressing Win+ Rand then pressing Enter.
  • Scroll down to find Windows Update Service .
  • Right click and select Properties.
  • On the General tab , under Startup type , click the drop-down menu.
  • Select Automatic and then click Start , and then click OK.
How to fix error 0x80070422 in Windows 10, fix error 0x80070422 update Win
Select Automatic and then click Start

6. Restart Network List Service

Some users reported that restarting another Windows service, called Network List , helped them fix error 0x80070422. Follow these steps:

  • Open Services again as described above.
  • Scroll down and locate Network List Service .
  • Right click and select Restart.
  • Wait for the Service Control prompt to restart the service.
How to fix error 0x80070422 in Windows 10, fix error 0x80070422 update Win
Wait for the Service Control prompt to restart the service.

7. Use Windows Registry Editor to fix error 0x80070422

Please note that you should be very careful when working with the Windows Registry, as any incorrect actions can cause problems and even damage the Windows operating system. You should back up the registry before making any changes to it.

HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ Windows Update\\Auto Update
  • Locate EnableFeaturedSoftware and make sure its value is set to 1.
  • If you can't find the key, you need to create it. Right-click an empty space in the right panel, then select New > DWORD( 32-bit) Value and name it EnableFeaturedSoftware.
  • Double click it and set its value to 1 .
How to fix error 0x80070422 in Windows 10, fix error 0x80070422 update Win
Set value to 1
  • Click OK and close Registry Editor.

8. Run SFC and DISM tools

How to fix error 0x80070422 in Windows 10, fix error 0x80070422 update Win
Fix error 0x80070422 using SFC tool

1. In the search bar on the home screen, type cmd. Open Command Prompt with admin rights .

2. Start running the System File Checker scan by typing sfc /scannow and pressing Enter.

3. Once the process is finished, run this command and press Enter :

DISM /Online /Cleanup-Image /RestoreHealth

4. Then try the following commands, pressing Enter after each command:

net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
Ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
Ren C:\Windows\System32\catroot2 Catroot2.old

Tip : Some PC problems are difficult to fix, especially when they involve corrupted storage or missing Windows files. If you're having trouble fixing the problem, your system may be damaged in some way.

5. Close Command Prompt and restart your computer. Then try to install the updates.

9. Perform advanced Windows Update troubleshooting

If none of the above fixes the problem, the error may have a deeper cause. You’ll need to dig deeper to discover what’s going on, and you may even need to reinstall Windows 10 to repair corrupted files.

Quantrimang.com has more help for you with the guides: How to fix Windows 10 update errors using SetupDiag for more advanced Windows Update troubleshooting and How to fix some errors when updating Windows 10 .

10. Use .bat file to fix error 0x80070422

Using a .bat file is a method that you can apply to fix error 0x80070422 when updating Windows 10. In this method, you will have to create a special .bat file with custom commands inside. After creating, you run the .bat file to execute the command to fix the error.

Detailed implementation is as follows:

1. You open the Notepad text editor .

2. Copy and paste the following commands into Notepad:

sc config wuauserv start= auto
sc config bits start= auto
sc config DcomLaunch start= auto
net stop wuauserv
net start wuauserv
net stop bits
net start bits
net start DcomLaunch

How to fix error 0x80070422 in Windows 10, fix error 0x80070422 update Win

3. Press Ctrl + S to save the file. In the Save as type window, select All files as the file type. Meanwhile, in the file name section, enter repair.bat. After completing, click Save.

How to fix error 0x80070422 in Windows 10, fix error 0x80070422 update Win

4. After creating the .bat file, find the location where the file is saved. Right-click on the file and select Run as administrator . The commands in the file will begin to be executed.

5. Wait for the commands to finish executing and then restart the computer to see if error 0x80070422 has been fixed.

11. Using third party software

An easy and quick solution is to use professional software that focuses on repairing the Windows operating system and freeing up space on your drive to help it perform at its full capacity.

This type of program can detect common problems that hinder the real performance of the Windows Registry and apply advanced system tweaks to fix them in real time.

Windows Update is intended to improve the overall performance of the operating system, integrate new features, and even upgrade existing ones. However, sometimes errors can occur unexpectedly.

Luckily, if you happen to encounter such problems, there is a dedicated Windows repair software that can help you fix them in no time. That is Restoro.

Here's how you can fix registry errors using Restoro:

1. Download and install Restoro .

2. Run the application.

3. Wait for the application to find any system stability issues and possible malware infections.

4. Click Start Repair .

5. Restart your PC for all changes to take effect.

Once the process is complete, your computer will be working perfectly normally and you will no longer have to worry about Windows Update errors of any kind.

Leave a Comment

How to Fix Microsoft Edge Out of Memory While Browsing

How to Fix Microsoft Edge Out of Memory While Browsing

Tired of Microsoft Edge "Out of Memory" crashes? Get proven, step-by-step solutions to fix Microsoft Edge out of memory while browsing. Boost speed and stability today!

How to Use Microsoft Edge for Remote Work and Education

How to Use Microsoft Edge for Remote Work and Education

Master how to use Microsoft Edge for remote work and education. Discover workspaces, collections, Immersive Reader, and productivity tips to boost efficiency and focus.

How to Use Microsoft Edge Sandbox for Safe Browsing

How to Use Microsoft Edge Sandbox for Safe Browsing

Discover how to harness Microsoft Edge Sandbox for safe browsing. Step-by-step guide to enable, optimize, and maximize security against threats while browsing effortlessly. Stay protected today!

Solving Microsoft Edge Profile Error on Every Launch

Solving Microsoft Edge Profile Error on Every Launch

Struggling with Microsoft Edge Profile Error every time you launch? Discover proven, step-by-step fixes to resolve the issue instantly. No more frustration – get back to browsing smoothly!

How to Fix Microsoft Edge Access Denied on Specific Sites

How to Fix Microsoft Edge Access Denied on Specific Sites

Struggling with Microsoft Edge "Access Denied" on specific sites? Discover proven, step-by-step fixes for Microsoft Edge Access Denied errors. Clear cache, tweak settings, and regain access fast—no tech skills needed!

How to Use Microsoft Edge Built-in VPN for Secure Browsing

How to Use Microsoft Edge Built-in VPN for Secure Browsing

Step-by-step guide: Learn how to use Microsoft Edge built-in VPN for secure browsing. Boost privacy, bypass restrictions, and stay protected effortlessly. Enable now!

How to Fix Microsoft Edge High CPU Usage and System Lag

How to Fix Microsoft Edge High CPU Usage and System Lag

Tired of Microsoft Edge high CPU usage causing system lag? Get proven, step-by-step fixes to optimize your browser, reduce lag, and boost performance fast. Latest solutions inside!

Troubleshooting Microsoft Edge Youtube Black Screen Fix

Troubleshooting Microsoft Edge Youtube Black Screen Fix

Struggling with YouTube black screen on Microsoft Edge? Discover proven troubleshooting Microsoft Edge "Youtube Black Screen" fix steps: clear cache, disable hardware acceleration, and more for seamless video playback. Quick, easy solutions inside!

Solving Microsoft Edge ERR_CONNECTION_REFUSED Error

Solving Microsoft Edge ERR_CONNECTION_REFUSED Error

Tired of Microsoft Edge ERR_CONNECTION_REFUSED blocking your browsing? Discover step-by-step fixes, from quick resets to advanced tweaks, that work on the latest Windows versions. Get online fast!

Troubleshooting Microsoft Edge Extensions Slowing Down Browser

Troubleshooting Microsoft Edge Extensions Slowing Down Browser

Is troubleshooting Microsoft Edge "extensions slowing down browser" your nightmare? Follow this step-by-step guide to identify, disable, and optimize extensions for blazing-fast performance. Restore Edge speed today!

How to Fix Microsoft Edge JavaScript Runtime Error on Windows 12

How to Fix Microsoft Edge JavaScript Runtime Error on Windows 12

Struggling with Microsoft Edge "JavaScript Runtime Error" on Windows 12? Discover proven, step-by-step fixes to resolve it quickly. Clear cache, reset settings, and more for smooth browsing. Updated with the latest tips!

How to Fix Microsoft Edge Windows Hello PIN Reset Fix

How to Fix Microsoft Edge Windows Hello PIN Reset Fix

Struggling with Microsoft Edge prompting "Windows Hello PIN" reset? Discover proven, step-by-step fixes for the Windows Hello PIN Reset issue in Edge. Quick solutions that work on the latest Windows updates – no tech skills needed!

Solving Microsoft Edge 500 Internal Server Error Fix

Solving Microsoft Edge 500 Internal Server Error Fix

Tired of the frustrating Microsoft Edge 500 Internal Server Error? Discover quick, step-by-step fixes to resolve it instantly. Clear cache, reset settings, and more for seamless browsing. Works on latest Edge versions!

How to Use Microsoft Edge Collections to Save Web Content

How to Use Microsoft Edge Collections to Save Web Content

Unlock the power of Microsoft Edge Collections to effortlessly save web content like links, images, text, and more. Step-by-step guide to organize, share, and boost productivity with this must-have Edge feature.

Troubleshooting Microsoft Edge Script Error When Printing

Troubleshooting Microsoft Edge Script Error When Printing

Tired of Microsoft Edge "Script Error" crashing your prints? Discover step-by-step troubleshooting for Microsoft Edge script error when printing. Quick fixes, causes, and prevention tips for seamless printing. Works on latest Edge versions!