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

How to update iPhone to the latest iOS version

How to update iPhone to the latest iOS version

Updating your iPhone software (iOS) is a good idea. Updates are available for free from Apple. They apply the latest features and security fixes to your iPhone. Here's how to update your iPhone to the latest version of iOS.

Instructions for limiting iPhone speaker volume

Instructions for limiting iPhone speaker volume

iOS 18.2 brings an option to limit iPhone speaker volume. Users can adjust how loud their iPhone speakers can play songs, videos, and other media.

Instructions to turn off File Explorer thumbnails Windows 11

Instructions to turn off File Explorer thumbnails Windows 11

Due to personal privacy or some other reason, many people want to turn off Windows 11 File Explorer thumbnails. Below are instructions to turn off Windows 11 File Explorer thumbnails.

How to reset iPhone to restore factory settings, any iPhone can do it

How to reset iPhone to restore factory settings, any iPhone can do it

Resetting your iPhone is the easiest way to reset your iPhone settings to their defaults. Resetting your iPhone can help you fix a few simple problems. Here are the steps to restore your iPhone to factory settings.

How to create AI radio on YouTube Music

How to create AI radio on YouTube Music

The YouTube Music app features Ask for Music, which helps create AI-powered radio based on each person's custom commands.

Basic guide to using Blooket - an application that creates learning games

Basic guide to using Blooket - an application that creates learning games

Blooket.com is known as an extremely useful educational support platform. Let's explore how to use Blooket through this article with Quantrimang.

Instructions to unpin default folders Windows 11

Instructions to unpin default folders Windows 11

Windows 11 File Explorer includes a number of default folders pinned to the sidebar. If you do not need to use them, you can completely unpin the default folders in File Explorer.

How to enable Notification Cooldown on Android 16

How to enable Notification Cooldown on Android 16

Notification Cooldown Android will gradually reduce the volume and vibration intensity of notifications when you receive too many notifications from the same app at once.

TFT Frost Team Season 12, TFT Frost Build

TFT Frost Team Season 12, TFT Frost Build

DTCL season 12's Iceborn is the most special race and its mechanism is somewhat similar to Sub-Zero in Mortal Kombat.

ScratchJR Maze Game Design Tutorial (Final Post)

ScratchJR Maze Game Design Tutorial (Final Post)

For projects or games in ScratchJR, the start and end screens play an important role in enhancing the completeness of the product.

Instructions for adjusting the size of the Windows 11 scroll bar

Instructions for adjusting the size of the Windows 11 scroll bar

The scroll bar on Windows 11 is compact in size, but many people want to change this size, enlarge the scroll bar to make it easier to see when needed.

How to collaborate on notes in FaceTime

How to collaborate on notes in FaceTime

FaceTime iOS 17 has a collaboration feature in notes to type notes together and track changes as someone types.

Windows 11 camera resolution configuration guide

Windows 11 camera resolution configuration guide

With Windows 11 build 27758 , Microsoft added advanced camera options so users can adjust basic camera configuration settings.

How to annotate screenshots using Snipping Tool

How to annotate screenshots using Snipping Tool

Snipping Tool also provides built-in tools for annotating computer screenshots. This tool allows you to mark and highlight important parts of the screenshot to convey the message you want.

How to view IP address on computer, view Win 10 IP address

How to view IP address on computer, view Win 10 IP address

Checking your computer's IP address will be necessary in many cases. If you want to know what your computer's IP address is, read this guide to see your computer's IP.