Обновление функций до windows 10 версия 22h2 ошибка 0xc1900403

Ошибка 0xc1900403 может возникать на компьютерах с Windows 10 во время обновления ОС. В сообщении ошибки утверждается, что при установке обновлений возникли какие-то проблемы. Данный код — вполне типичная ошибка, возникающая при обновлении системы, однако она запросто решается при помощи нескольких проверенных способов.

Устраняем ошибку 0xc1900403 в Windows 10

0xc1900403

Шаг №1 Сброс Центра обновления

Первым делом вам нужно попытаться сбросить компоненты Центра обновления Windows 10, а затем посмотреть, исчезнет ошибка 0xc1900403 или же нет. Возможно, некоторые файлы Центра обновления были повреждены, вследствие чего и возникла ошибка.

Чтобы сбросить Центр обновления Windows 10, вам нужно сделать следующее:

  1. создайте на Рабочем столе текстовый документ;
  2. откройте созданный и вставьте в него следующий ряд команд:
    • @echo off

      ::Сброс центра обновлений
      ::GamesQA.ru

      :: Checking and Stopping the Windows Update services
      set b=0

      :bits
      set /a b=%b%+1
      if %b% equ 3 (
      goto end1
      )

      net stop bits
      echo Checking the bits service status.
      sc query bits | findstr /I /C:»STOPPED»
      if not %errorlevel%==0 (
      goto bits
      )
      goto loop2

      :end1
      cls
      echo.
      echo Cannot reset Windows Update since «Background Intelligent Transfer Service» (bits) service failed to stop.
      echo.
      pause
      goto Start

      :loop2
      set w=0

      :wuauserv
      set /a w=%w%+1
      if %w% equ 3 (
      goto end2
      )
      net stop wuauserv
      echo Checking the wuauserv service status.
      sc query wuauserv | findstr /I /C:»STOPPED»
      if not %errorlevel%==0 (
      goto wuauserv
      )
      goto loop3

      :end2
      cls
      echo.
      echo Cannot reset Windows Update since «Windows Update» (wuauserv) service failed to stop.
      echo.
      pause
      goto Start

      :loop3
      set app=0
      :appidsvc
      set /a app=%app%+1
      if %app% equ 3 (
      goto end3
      )
      net stop appidsvc
      echo Checking the appidsvc service status.
      sc query appidsvc | findstr /I /C:»STOPPED»
      if not %errorlevel%==0 (
      goto appidsvc
      )
      goto loop4

      :end3
      cls
      echo.
      echo Cannot reset Windows Update since «Application Identity» (appidsvc) service failed to stop.
      echo.
      pause
      goto Start

      :loop4
      set c=0

      :cryptsvc
      set /a c=%c%+1
      if %c% equ 3 (
      goto end4
      )
      net stop cryptsvc
      echo Checking the cryptsvc service status.
      sc query cryptsvc | findstr /I /C:»STOPPED»
      if not %errorlevel%==0 (
      goto cryptsvc
      )
      goto Reset

      :end4
      cls
      echo.
      echo Cannot reset Windows Update since «Cryptographic Services» (cryptsvc) service failed to stop.
      echo.
      pause
      goto Start

      :Reset
      Ipconfig /flushdns
      del /s /q /f «%ALLUSERSPROFILE%\Application Data\Microsoft\Network\Downloader\qmgr*.dat»
      del /s /q /f «%ALLUSERSPROFILE%\Microsoft\Network\Downloader\qmgr*.dat»
      del /s /q /f «%SYSTEMROOT%\Logs\WindowsUpdate\*»

      if exist «%SYSTEMROOT%\winsxs\pending.xml.bak» del /s /q /f «%SYSTEMROOT%\winsxs\pending.xml.bak»
      if exist «%SYSTEMROOT%\winsxs\pending.xml» (
      takeown /f «%SYSTEMROOT%\winsxs\pending.xml»
      attrib -r -s -h /s /d «%SYSTEMROOT%\winsxs\pending.xml»
      ren «%SYSTEMROOT%\winsxs\pending.xml» pending.xml.bak
      )

      if exist «%SYSTEMROOT%\SoftwareDistribution.bak» rmdir /s /q «%SYSTEMROOT%\SoftwareDistribution.bak»
      if exist «%SYSTEMROOT%\SoftwareDistribution» (
      attrib -r -s -h /s /d «%SYSTEMROOT%\SoftwareDistribution»
      ren «%SYSTEMROOT%\SoftwareDistribution» SoftwareDistribution.bak
      )

      if exist «%SYSTEMROOT%\system32\Catroot2.bak» rmdir /s /q «%SYSTEMROOT%\system32\Catroot2.bak»
      if exist «%SYSTEMROOT%\system32\Catroot2» (
      attrib -r -s -h /s /d «%SYSTEMROOT%\system32\Catroot2»
      ren «%SYSTEMROOT%\system32\Catroot2» Catroot2.bak
      )

      :: Reset Windows Update policies
      reg delete «HKCU\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate» /f
      reg delete «HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\WindowsUpdate» /f
      reg delete «HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate» /f
      reg delete «HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\WindowsUpdate» /f
      gpupdate /force

      :: Reset the BITS service and the Windows Update service to the default security descriptor
      sc.exe sdset bits D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)

      sc.exe sdset wuauserv D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)

      :: Reregister the BITS files and the Windows Update files
      cd /d %windir%\system32
      regsvr32.exe /s atl.dll
      regsvr32.exe /s urlmon.dll
      regsvr32.exe /s mshtml.dll
      regsvr32.exe /s shdocvw.dll
      regsvr32.exe /s browseui.dll
      regsvr32.exe /s jscript.dll
      regsvr32.exe /s vbscript.dll
      regsvr32.exe /s scrrun.dll
      regsvr32.exe /s msxml.dll
      regsvr32.exe /s msxml3.dll
      regsvr32.exe /s msxml6.dll
      regsvr32.exe /s actxprxy.dll
      regsvr32.exe /s softpub.dll
      regsvr32.exe /s wintrust.dll
      regsvr32.exe /s dssenh.dll
      regsvr32.exe /s rsaenh.dll
      regsvr32.exe /s gpkcsp.dll
      regsvr32.exe /s sccbase.dll
      regsvr32.exe /s slbcsp.dll
      regsvr32.exe /s cryptdlg.dll
      regsvr32.exe /s oleaut32.dll
      regsvr32.exe /s ole32.dll
      regsvr32.exe /s shell32.dll
      regsvr32.exe /s initpki.dll
      regsvr32.exe /s wuapi.dll
      regsvr32.exe /s wuaueng.dll
      regsvr32.exe /s wuaueng1.dll
      regsvr32.exe /s wucltui.dll
      regsvr32.exe /s wups.dll
      regsvr32.exe /s wups2.dll
      regsvr32.exe /s wuweb.dll
      regsvr32.exe /s qmgr.dll
      regsvr32.exe /s qmgrprxy.dll
      regsvr32.exe /s wucltux.dll
      regsvr32.exe /s muweb.dll
      regsvr32.exe /s wuwebv.dll
      regsvr32.exe /s wudriver.dll
      netsh winsock reset
      netsh winsock reset proxy
      :: Set the startup type as automatic
      sc config wuauserv start= auto
      sc config bits start= auto
      sc config DcomLaunch start= auto

      :Start
      net start bits
      net start wuauserv
      net start appidsvc
      net start cryptsvc

  3. сохраните документ и закройте его;
  4. измените расширение файла с «.txt» и «.bat»;
  5. запустите созданный скрипт, нажав на него дважды левой кнопкой мыши.

Подождите окончания сброса компонентов Центра обновления и перезагрузите свой компьютер.

Шаг №2 Запуск средства устранения неполадок

Если вышеуказанный шаг не помог решить проблему, то далее вам нужно попробовать запустить средство устранения неполадок, разработанное силами Майкрософт. Для этого вам нужно сделать следующее:

  1. нажмите Windows+I и откройте раздел «Обновление и безопасность»;
  2. перейдите во вкладку «Устранение неполадок»;
  3. нажмите на пункт «Центр обновления Windows» и кликните на кнопку «Запустить средство устранения неполадок»;
  4. подождите окончания работы средства и кликните на опцию «Применить это исправление»;
  5. перезагрузите компьютер после применения предложенного решения.

Шаг №3 Отдельный установщик или средство создания носителя Windows 10

Итак, если ничего из вышеуказанного не смогло вам помочь, то остается лишь одно: установить нужное обновление собственноручно. Если вы знаете, какое обновление пытается установить Центр обновления — переходим в каталог обновлений и загружаем установщик.

Если же это крупное обновление, то тут придется воспользоваться услугами средства создания носителя Windows 10. Воспользуйтесь этой невероятно полезной статьей от Майкрософт для создания носителя и последующего обновления своей системы.

Мы надеемся, что данный материал был полезен для вас в решении ошибки 0xc1900403 в Windows 10.

Ошибка 0xc1900403 появляется при неудачной попытке установить обновления. Исправить её можно стандартными способами: запустить средство устранения неполадок, сбросить компоненты системы обновления, установить обновления принудительно. 

Запуск средства устранения неполадок

Универсальный совет для всех ошибок в «Центре обновления» — использование встроенного средства устранения неполадок. Помогает не так часто, как хотелось бы, но и времени много не занимает.

  1. Открываем «Параметры».
  2. Переходим в раздел «Обновление и безопасность».
  3. Выбираем вкладку «Устранение неполадок».
  4. Находим в списке «Центр обновления Windows».
  5. Нажимаем на кнопку «Запустить средство устранения неполадок».

    Устранение неполадок Центра обновлений

    Автоматическое устранение неполадок

Утилита может не найти ошибку или не суметь её исправить. В таком случае придётся пробовать другие способы.

Сброс системы обновления

За установку обновлений отвечают сразу несколько компонентов. Если хотя бы один работает с ошибками, то ломается вся цепочка. Найти конкретного виновника трудно, да и не нужно — гораздо эффективнее отключить, а затем запустить все компоненты системы, заодно очистив папку с файлами обновлений.

Самый удобный способ сбросить систему обновления — создать BAT-файл с соответствующими командами. Для этого открываем стандартный текстовый редактор «Блокнот». Он есть во всех версиях Windows. Вставляем в него следующий скрипт:

@ECHO OFF

echo Sbros Windows Update

echo.

PAUSE

echo.

attrib -h -r -s %windir%\system32\catroot2

attrib -h -r -s %windir%\system32\catroot2\*.*

net stop wuauserv

net stop CryptSvc

net stop BITS

ren %windir%\system32\catroot2 catroot2.old

ren %windir%\SoftwareDistribution SoftwareDistribution.old

ren «%ALLUSERSPROFILE%\application data\Microsoft\Network\downloader» downloader.old

net Start BITS

net start CryptSvc

net start wuauserv

echo.

echo Gotovo

echo.

PAUSE

Затем сохраняем файл в правильном формате. Раскрываем меню «Файл», выбираем опцию «Сохранить как». Указываем тип «Все файлы», кодировку — ANSI. Вводим любое имя с расширением BAT — например, tehnichka.bat. Сохраняем файл.

Сброс служб обновления

Останавливаем и запускаем основные компоненты системы обновления с помощью скрипта

Запускаем созданный «батник». Во время выполнения скрипта будут остановлены, а затем запущены службы, которые отвечают за установку обновлений. Часто этого достаточно для того, чтобы устранить различные ошибки при апдейте системы.

Принудительная установка

Все обновления для Windows доступны для бесплатного скачивания из каталога Microsoft. Но прежде чем использовать его, нужно узнать номер апдейта, при установке которого появляется сообщение об ошибке.

  1. Открываем «Параметры».
  2. Переходим в раздел «Обновление и безопасность».
  3. На вкладке «Центр обновления Windows» нажимаем на кнопку «Просмотр журнала обновлений».
  4. Находим апдейт, возле которого указана ошибка с номером 0xc1900403.

Осталось найти и скачать само обновление. Здесь всё просто: открываем каталог Microsoft, в поисковой строке указываем номер апдейта и загружаем подходящую версию. Обязательно проверяем разрядность, чтобы обновление было совместимым с системой. После завершения загрузки устанавливаем обновление.

Если ошибка появляется при установке нескольких обновлений, то удобнее будет не качать их по одному, а поставить пакетом с помощью утилиты Media Creation Tool. Это бесплатная программа, которая предназначена для обновления или чистой установки Windows 10.

  1. Запускаем Media Creation Tool.
  2. Выбираем режим «Обновить этот компьютер сейчас».
  3. Скачиваем и устанавливаем обновления с помощью мастера.

    Обновить компьютер сейчас

    Принудительно обновляем систему

При таком обновлении будут установлены все доступные апдейты, даже если их не удаётся по какой-то причине скачать через «Центр обновления Windows».

Post Views: 905

  • Home
  • News
  • How to Fix Windows Update Error 0xc1900403?

By Yamila | Follow |
Last Updated

You are likely to experience the error 0xc1900403 when trying to update your Windows. How can you fix it? Here, this post from MiniTool Partition Wizard provides several effective methods to help you sort out the annoying update error. You can take a look.

Many users complain about the error 0xc1900403 during the Windows update process. It’s a common update error that comes along with an error message that says: There were some problems installing updates, but we’ll try again later.

To assist in solving the Windows 10/11 update error code 0xc1900403, this post summarizes some feasible methods below. If you are one victim of the error, you can try to fix it by following the given methods.

Fix 1: Run the Windows Update Troubleshooter

The Windows Update troubleshooter is a Windows preinstalled utility that can repair lots of issues related to Windows updates. When you run into the error 0xc1900403 Windows 10/11, you can try running the troubleshooter to fix it.

Step 1: Right-click the Start icon and then select Settings from the context menu.

Step 2: Select Update & Security to continue.

Step 3: Go to Troubleshoot. Then click Additional troubleshooters in the right panel.

Step 4: In the next window, locate Windows Update. Then click Run the troubleshooter.

Run the Windows Update troubleshooter

Step 5: After that, the troubleshooter will automatically detect problems with Windows updates. If any are found, follow the on-screen instructions to fix them.

Fix 2: Temporarily Disable the Antivirus

The third-party antivirus programs installed on your PC and Windows Defender Firewall may sometimes recognize the Windows update as a threat and interfere with it. As a result, you will fail to update your Windows and receive the error code 0xc1900403.

As for this, you’d better temporarily disable the antivirus to avoid the annoying error. Keep in mind that viruses or malware may attack your system after you disable the antivirus programs. So, you need to enable them as soon as you finish updating Windows.

Fix 3: Perform SFC and DISM Scans

Corrupted or missing system files are another possible reason for the Windows update error 0xc1900403. In this case, you can try to fix it by running the SFC and DISM scans. To do this, follow the steps below.

Step 1: Press Windows + R to open the Run dialog.

Step 2: Type cmd in the text box and press Ctrl + Shift + Enter to open Command Prompt as an administrator.

Step 3: Type sfc /scannow in Command Prompt, and then press Enter to execute the SFC scan.

Run SFC

Step 4: After the scan completes, restart your computer and open the elevated Command Prompt again.

Step 5: After that, execute the DISM /Online /Cleanup-image /Restorehealth command.

Further reading:

In case disk errors prevent you from installing Windows updates successfully, you’d better check your disk health. You can run CHKDSK to do this. Also, you can make use of MiniTool Partition Wizard. It’s a helpful disk checker that can check and fix file system errors on your disk.

Besides, MiniTool Partition Wizard also enables you to partition/clone hard drive, format USB to FAT32/NTFS/exFAT, recover data from hard drive, etc.

To check for disk errors with MiniTool Partition Wizard, get MiniTool Partition Wizard on your PC and then choose the Check File System feature for the target drive.

MiniTool Partition Wizard FreeClick to Download100%Clean & Safe

Fix 4: Rename/Delete the SoftwareDistribution Folder

If there is something wrong with the SoftwareDistribution folder, you may get stuck in the error 0xc1900403 Windows 10/11 as well. To remove the error, you can try renaming/deleting the specific folder. This guide will tell you how to do this: How to Rename or Delete Software Distribution Folder on Windows.

Fix 5: Manually Update Your Windows

When suffering from the Windows update error 0xc1900403, it’s also recommended that you download and install the failing Windows update manually. By doing so, you can effectively bypass errors that occur during a Windows auto-update.

To get rid of the update error 0xc1900403 Windows 10/11, you can try the methods listed above. If you have any other great solutions to the error, you can share them with us in the following comment part.

About The Author

Position: Columnist

Yamila is a fan of computer science. She can solve many common issues for computer users by writing articles with simple and clear words. The very aspect that she is good at is partition management including create partition, format partition, copy disk and so on.

When she is free, she enjoys reading, doing some excerpts, listening to music and playing games.

Windows Update error 0xc1900403 is a recurring error in Windows 10. I’ve seen it many times in the last few years, but especially in the latest months, the error 0xc1900403 seems to be back more often. In this post, I’ll sum up the real effective solutions to fix this error. Every step may completely fix the problem, so make sure you retry to download and install the updates every now and then.

Install the latest semi-annual version of Windows 10

80% chance that this will solve the problem.

This should be your first attempt to fix the problem: use Microsofts Update Assistant to install the latest version. You may run 1903 or 1809 now. Then it’s definitely a good idea to upgrade to 1909 (as for now is the latest version):

  1. Go to https://www.microsoft.com/en-us/software-download/windows10
  2. Click the blue Update Now button.
    windows 10 update now 0xc1900403

  3. A file, named Windows10Upgrade####.exe, is being downloaded. Run this file and follow the steps in the wizard.
    Please note that updating your Windows 10 version could take more than an hour.
  4. Done updating? Retry to scan, download and install Windows Updates.

Scan and fix system files

10% chance that this will solve your problem.

In case you’re already on the latest version, then an upgrade is not possible of course. In that case, you should try to scan system files for corruption.

  1. Open a Command prompt as an administrator.
  2. Enter the following commands (each may take a few minutes to complete):
    dism.exe /Online /Cleanup-image /Restorehealth
    sfc /scannow
  3. Wait for each command to complete. It’s no problem to rerun the command if you made a mistake.
  4. Once finished, exit command prompt and restart your computer.
  5. Back in Windows 10, retry to scan, download and install Windows Updates.

Cleanup and Reset Windows Updates folders

5% chance that this will solve your problem.

This is likely one of your last resorts. It’s an old Windows Update reset trick that usually works in Windows XP and above. It’s all about cleaning up the Windows Update folders that hold cached files and configuration files.

  1. Open a Command prompt as an administrator.
  2. Enter the following commands. You may do it one by one, but you may also copy-paste:
    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
  3. Did you get an error at Ren … ? Sometimes Windows 10 is very stubborn and immediately restarts the services. Enter these commands again:
    net stop wuauserv
    Ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
    Ren C:\Windows\System32\catroot2 Catroot2.old
  4. Enter the following commands to restart the Windows Update services:
    net start wuauserv
    net start cryptSvc
    net start bits
    net start msiserver
  5. Retry to scan, download and install Windows Updates.

Did you fix 0xc1900403?

I hope you fixed your issue with one of the solutions above. If not, please leave a comment below with a description of your error / problem. I may have another solution for you, depending on the kind of error.

Known Windows Updates for causing the error 0xc1900403

The following updates are known for showing the Windows Update errors. This doesn’t mean the error is a result of the update. It more has to do with download size and state of your pc at the moment you were downloading and installing the update.

  • 2020-01 Cumulative Update for Windows 10 Version 1903 for x64-based Systems (KB4528760).
  • 2020-01 Cumulative Update for Windows 10 Version 1909 for x64-based Systems (KB4532695).
  • 2020-02 Cumulative Update for Windows 10 Version 1909 for x64-based Systems (KB4535996).
  • 2020-02 Cumulative Update for Windows 10 Version 1809 for x64-based Systems (KB4537818).

Technical information

More information will show you:
There were problems installing some updates, but we’ll try again later, If you keep seeing this and want to search the web or contact support for information, this may help – 0xc1900403”.
The error refers to MOSETUP_E_UA_CORRUPT_PAYLOAD_FILES”, which basically indicates that the payload files are corrupted. Pretty useless information for most home users, or even experienced system administrators. Only Microsoft employees could possibly investigate these exact errors further.

These days, the Windows update process is getting stuck on error code 0xc1900403 and thus not letting users upgrade their PCs. If you are one such user and are looking for solutions that can fix this bug, read this post in detail. This bug often comes associated with an error message that reads the following –

There were problems installing some updates, but we’ll try again later, If you keep seeing this and want to search the web or contact support for information, this may help – 0xc1900403.

This error typically occurs when the payload files become corrupt somehow. Upon opening the Windows log file, you may receive the below error –

0XC1900403 – MOSETUP_E_UA_CORRUPT_PAYLOAD_FILES

Fix Update Error Code 0xc1900403

To get rid of the error code 0xc1900403, go through the below list of solutions –

1. Run Windows Update Troubleshooter

Whenever you receive any error while updating Windows, the first and foremost thing to do is to run the Update Troubleshooter. This tool is known to solve almost all bugs and errors on the computer. Here’s how to do this task –

  • Press the Windows key + I to launch the Settings app.
  • Next, click Update & Security > Troubleshoot.
  • Jump to the right pane and hit Additional Troubleshooters.
  • Subsequently, click to expand Windows Update and choose “Run the troubleshooter“.

Run the Windows Update Troubleshooter - Update error 0x8024a000

  • Follow the on-screen instructions to complete the remaining steps.
  • After the troubleshooting is completed, Restart the PC so that the changes made come into effect.

Sign back into your computer and check whether you are now able to upgrade to the Windows 10 OS or not. If not, you may try the below suggestions –

2. Use System File Checker

If you still face the 0xc1900403 issue then, maybe this occurs because of file corruption. To repair corrupted files or correct missing ones, you may use the SFC tool. Here’s how to do the SFC scanning on your PC –

  • Type the Command Prompt in the Search box (displayed on the desktop beside the Windows icon)
  • Right-click on Command Prompt and select Run as administrator.
  • When the black screen appears, type the command sfc/scannow and hit the Enter key.

SFC Scannow

  • Keep patience and wait until the process gets 100% completed. The whole process will take 15-20 minutes.
  • After completion of this process, restart your system to implement the above changes. 

3. Run DISM Scan

If the Windows 10 image gets corrupted somehow, this might also cause the 0xc1900403 error. To address this, you must run the DISM command using the following steps –

  • Right-click on Windows Icon and select Windows Power Shell (Admin).
  • When the UAC pop-up comes into the display, hit Yes to grant the permission.
  • On the elevated console, execute the below command line –

DISM.exe /Online /Cleanup-image /Restorehealth

DISM

  • Once this is over, close PowerShell and Reboot your system.

Log back into your device and see if this helps to update your Windows or not.

4. Clear Software Distribution Folder

If you still do not overcome this error, the Windows Cache folder might be the real culprit. If you haven’t cleared this folder for a long time, open the Software distribution folder and remove all its contents. However, make sure to disable the essential Windows services first. To do so, use the following steps –

  • Press the Windows + R keys to start the Run dialog.
  • Type “cmd” in the text field and press Ctrl + Shift + Enter keys altogether.
  • When Command Prompt comes into view, run these codes one by one –

net stop wuauserv

net stop bits

Update Error Code 0xc1900403 - Stop services

  • When the prompt displays the message – “Windows Update Service was stopped successfully“, go to the below location –

C:\Windows\SoftwareDistribution

Update Error Code 0xc1900403 - Clear software distribution folder

  • Press CTRL + A to select all the files available inside this folder and delete them.
  • After clearing the Windows cache folder, make sure to start those services that you stopped recently i.e. Windows Update and BITS. To do so, use these codes – 
net start wuauserv
net start bits
  • Lastly, restart your PC so that the changes made come into effect from the next login. 

I hope the solutions above help you to get over the Windows error code 0xc1900403. In case the error prevails, you may use the previously created restore points or clean install Windows 10. Let us know in the comment section if you face any difficulty trying the above workarounds. 

How do I fix error 0x8007000d?

Just like 0xc1900403, 0x8007000d is also an update-related issue and you may overcome this issue by following the below workarounds –

  • Troubleshoot Windows Update
  • Try SFC/DISM
  • Reset update components

In case, this error is still appearing while updating Windows, note down the pending update and visit Microsoft’s Update Catalog. Paste the noted-down KB number in the search field and hit Enter.

A list of matching results will appear on the desktop screen. Pick the one that matches your system architecture and hit the Download button. Click the top link to begin downloading the setup file.

After the download finishes, double-click on the setup file (.msu file format) to begin the update installation. Here’s a detailed overview of how to manually install pending updates on your computer.

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Nfc tools для windows
  • Как поменять панель управления на windows 10
  • Argox cp 2140 драйвера для windows
  • Поменять курсор мыши на windows 10 анимированные
  • Как установить pip3 на windows