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.

Sign up and earn $1000 a day ⋙

Leave a Comment

Instructions to turn off Galaxy AI on Samsung phones

Instructions to turn off Galaxy AI on Samsung phones

If you no longer need to use Galaxy AI on your Samsung phone, you can turn it off with a very simple operation. Below are instructions for turning off Galaxy AI on your Samsung phone.

How to delete AI character created on Instagram

How to delete AI character created on Instagram

If you don't need to use any AI characters on Instagram, you can also quickly delete them. Here's how to delete AI characters on Instagram.

Instructions for inserting delta symbol in Excel

Instructions for inserting delta symbol in Excel

The delta symbol in Excel, also known as the triangle symbol in Excel, is used a lot in statistical data tables, expressing increasing or decreasing numbers, or any data according to the user's wishes.

Instructions for sharing a sheet on Google Sheets

Instructions for sharing a sheet on Google Sheets

In addition to sharing a Google Sheets file with all sheets displayed, users can choose to share a Google Sheets data area or share a sheet on Google Sheets.

Instructions for disabling ChatGPT storage

Instructions for disabling ChatGPT storage

Users can also customize to disable ChatGPT memory whenever they want, on both mobile and computer versions. Below are instructions for disabling ChatGPT memory.

Instructions to see the last Windows Update time

Instructions to see the last Windows Update time

By default, Windows Update will automatically check for updates and you can also see when the last update was. Here is a guide to see when Windows last updated.

Instructions to delete eSIM on iPhone are very simple

Instructions to delete eSIM on iPhone are very simple

Basically, the operation to delete eSIM on iPhone is also simple for us to follow. Below are instructions to delete eSIM on iPhone.

How to Convert Live Photo to Boomerang on iPhone

How to Convert Live Photo to Boomerang on iPhone

In addition to saving Live Photos as videos on iPhone, users can convert Live Photos to Boomerang on iPhone very simply.

How to block SharePlay on iPhone from automatically turning on

How to block SharePlay on iPhone from automatically turning on

Many apps automatically enable SharePlay when you FaceTime, which can cause you to accidentally press the wrong button and ruin the video call you're making.

How to use Click to Do on Windows 11

How to use Click to Do on Windows 11

When you enable Click to Do, the feature works and understands the text or image you click on and then makes judgments to provide relevant contextual actions.

How to turn on laptop keyboard light, activate Keyboard Backlight on Windows 10

How to turn on laptop keyboard light, activate Keyboard Backlight on Windows 10

Turning on the keyboard backlight will make the keyboard glow, useful when operating in low light conditions, or making your gaming corner look cooler. There are 4 ways to turn on the laptop keyboard light for you to choose from below.

How to enter Safe Mode Windows 10 on startup

How to enter Safe Mode Windows 10 on startup

There are many ways to enter Safe Mode on Windows 10, in case you cannot enter Windows and cannot enter. To enter Safe Mode Windows 10 when starting the computer, please refer to the article below of WebTech360.

How to create Ghibli style photos on Grok AI

How to create Ghibli style photos on Grok AI

Grok AI has now expanded its AI photo generator to transform personal photos into new styles, such as creating Studio Ghibli style photos with famous animated films.

Instructions to register for Google One AI Premium for free for 1 month

Instructions to register for Google One AI Premium for free for 1 month

Google One AI Premium is offering a 1-month free trial for users to sign up and experience many upgraded features such as the Gemini Advanced assistant.

How to turn off recent searches on Safari

How to turn off recent searches on Safari

Starting with iOS 18.4, Apple allows users to decide whether to show recent searches in Safari.