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

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

Причины ошибки 0x80D05001

  • Глюк в работе Центра обновления Windows.
  • Поврежденные компоненты Центра обновления.
  • Некорректно настроенный прокси-сервер или VPN.
  • Чересчур «агрессивный» брандмауэр.
  • Повреждение системных файлов.

Решение ошибки 0x80D05001

Давайте теперь посмотрим с вами на несколько методов решения ошибки 0x80D05001. Начиная от автоматических средств и заканчивая сложными комбинациями действий — устранить данную проблему можно самыми разными способами.

0x80D05001

Метод №1 Запуск автоматизированного средства

Ошибка 0x80D05001 может возникать в результате бага в работе Центра обновления Windows и его компонентов. Благо, в операционной системе находится особое средство по устранению различных неполадок, которое в автоматическом режиме может исправить вашу проблему. Давайте попробуем с вами воспользоваться им:

  • нажмите комбинацию Win+R;
  • вставьте в пустую строку значение ms-settings:troubleshoot и нажмите Enter;
  • найдите в списке Центр обновления и выберите его;
  • кликните на кнопку «Запуск средства устранения неполадок»;
  • далее вам нужно просто делать все согласно инструкциям на вашем экране.

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

Метод №2 Восстановление поврежденных компонентов Центра обновления

Если средство устранения неполадок не сработало, то ошибка 0x80D05001 наверняка возникла в результате повреждения некоторых компонентов Центра обновления Windows 10. Нет, в таком случае вам не потребуется переустановка операционной системы, а поэтому можете не переживать. Тем не менее вам нужно выполнить кое-какие действия, свойственные опытным пользователям.

Итак, выполните следующий ряд шагов:

  • создайте на своем рабочем столе самый обычный текстовый файл (ПКМ→Создать→Текстовый документ);
  • вставьте в только что созданный текстовик следующий ряд команд (ничего не меняйте!):
    • @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

  • далее выберите Файл→Сохранить как…;
  • задайте файлу любое имя, но обязательно поменяйте ему расширение с .txt на .bat;
  • выберите нужное вам расположение, например, рабочий стол, и кликните кнопку «Сохранить»;
  • дважды кликните на только что созданный «батник»;
  • подождите завершения сброса компонентов Центра обновления и нажмите на любую кнопку на клавиатуре при появлении соответствующего сообщения в командной строке.

Перезагрузите компьютер и проверьте наличие ошибки 0x80D05001.

Метод №3 Отключение прокси или VPN-клиента

Ошибка 0x80D05001 также могла возникнуть в результате использования вами прокси-сервера или VPN-клиента. Последнее вам придется деактивировать самостоятельно, но вот с прокси-сервером мы вам поможем. Чтобы отключить прокси-сервер на своей Windows 10, сделайте следующее:

  • нажмите Win+S на своей клавиатуре;
  • впишите запрос «Прокси» и выберите из списка результатов пункт «Параметры прокси-сервера»;
  • выставьте переключатель рядом с опцией «Использовать прокси-сервер» в положение «Откл.»;
  • закройте все окошки и перезагрузите свой компьютер.

Итак, как только вы войдете в систему, пройдите в Центр обновления и запустите апдейт Windows 10.

Метод №4 Отключение брандмауэра

Некоторые пользователи утверждают, что ошибка 0x80D05001 может возникать из-за чересчур «заботливого» брандмауэра. Как правило, такая ситуация возникает с фаерволом от сторонних разработчиков. Вот что мы советуем вам сделать: либо временного отключите фаервол (если такая возможность присутствует), либо удалите утилиту, которая предоставляет данный функционал. Ни то, ни другое решение для вас не в радость, но проверить все-таки стоит. Возможно, придется заменить текущий фаервол на фаервол другого разработчика.

Метод №5 Запуск сканирований SFC и DISM

Возможно, вы имеете дело с поврежденными системными файлами и компонентами Windows 10. В такой ситуации стоит воспользоваться утилитами System File Checker и DISM. Не нужно ничего качать или долго настраивать: открыли командную строку (Win+R→cmd→Ctrl+Shift+Enter) и выполнили определенную пачку команд. Кстати, вот и эти команды:

  • sfc /scannow
  • Dism /Online /Cleanup-Image /RestoreHealth

Понятное дело, дожидаемся окончания работы каждой из программ и делаем все, что от нас требуется в командной строке, в конце — перезагружаемся. Как только закончите чинить свою потенциально поврежденную ОС, запустите ее обновление и проверьте, была ли устранена ошибка 0x80D05001.

  • Remove From My Forums

locked

Error 0x80d05001 with Server 2016 – Windows 10 Clients

  • Question

  • This is on a new install. All Windows Updates were performed on the server.

    Windows 7 machines are updating like normal, but Windows 10 machines are throwing 0x80D05001 during the downloading step.

    IIS on the WSUS server is showing no errors, requests are always responded to with 200 OK.

    Log on the Windows 10 machine shows the following:

    2018/07/16 11:29:31.2041384 3784  4692  DownloadManager Dynamic download data fetcher for ServiceId 3DA21691-E39D-4DA6-8A4B-B43877BCB1B7 does not exist.
    2018/07/16 11:29:31.2056279 3784  4692  DownloadManager Update the URLs for DO Job 86BB1BCA-679E-43D0-885D-8E7DA791D985 – Update 7E1C8B32-BCEF-45A9-A324-67E26609A809.200
    2018/07/16 11:29:31.2061021 3784  4692  DownloadManager Download job 86BB1BCA-679E-43D0-885D-8E7DA791D985 resumed.
    2018/07/16 11:29:31.2063063 3784  4692  DownloadManager Dynamic download data fetcher for ServiceId 3DA21691-E39D-4DA6-8A4B-B43877BCB1B7 does not exist.
    2018/07/16 11:29:31.5609160 3784  8832  DownloadManager Suspended update 7E0B1F76-AEC3-4146-AE28-3B25E2A97A24 for reason 0x40000 (DynamicUrl)
    2018/07/16 11:29:31.5609210 3784  8832  DownloadManager Attempted to resume update 7E0B1F76-AEC3-4146-AE28-3B25E2A97A24 for reason 0x40000 (DynamicUrl), update is no longer suspended afterward.
    2018/07/16 11:29:31.5609359 3784  8832  DownloadManager DO job {9B2794CE-4FE0-4D1D-A67B-4EC8399042E7} failed, updateId = 7E0B1F76-AEC3-4146-AE28-3B25E2A97A24.200, hr = 0x80D05001. File URL = http://SERVER:8530/, local path = C:\WINDOWS\SoftwareDistribution\Download\6b8c686eddd1df25bc825c072d95a89e\Windows10.0-KB4338832-X64.cab,
    The response headers = HTTP/1.1 200 OK  Date: Mon, 16 Jul 2018 15:29:32 GMT  Content-Length: 299  Content-Type: text/html; charset=UTF-8  Server: Microsoft-IIS/10.0  X-Powered-By: ASP.NET    
    2018/07/16 11:29:31.5610491 3784  8832  DownloadManager   Progress failure bytes total = 21692015, bytes transferred = 0
    2018/07/16 11:29:31.5642302 3784  8832  DownloadManager *FAILED* [80D05001] Error occurred while downloading update 7E0B1F76-AEC3-4146-AE28-3B25E2A97A24.200; notifying dependent calls.

Several Windows 10 users face 0x80D05001 error code after you have updated your OS or if your Windows Store does not install latest updates. Every Windows users encounter 0x80D05001 error in Microsoft Store than after a Windows Update. Nevertheless, there are so many hacks to resolve the same irrespective of their instance of occurrence. If you are also struggling with 0x80d05001 Windows 10 update or Microsoft Store error, this guide will help you sort this out. So, continue reading.

Fix Windows 10 Update Store Error 0x80D05001

Table of Contents

Before undertaking any troubleshooting methods on hand, you should know the primary reason that contributes to the error. This will help you understand the causes and prevent the same in the near future. Here are few common factors that lead to 0x80d05001 Windows 10 update or Microsoft Store error.

  • Background processes interfering with update task.
  • Improper date and time settings.
  • Corrupt Windows Store cache.
  • Corrupt system files and configurations.
  • Outdated Windows OS.
  • Proxy/VPN interference.
  • Antivirus/firewall interference.
  • Corrupt Windows update components.
  • Misconfigured Windows Store.

In this section, you will learn the best troubleshooting methods that will help you fix 0x80d05001 Windows 10 update or Microsoft Store error. Follow them as instructed and enjoy the outcomes.

Note: Make sure you create a System Restore point to restore your computer when something goes wrong.

Method 1: Run Windows Update Troubleshooter

It is very common to face any common errors with Windows applications. Windows 10, 8 and 7 has built in troubleshooting tool to fix all the problems triggering certain errors. If you are facing 0x80d05001 after updating your Operating System, running Windows Update troubleshooter will help you. On the other hand, If you are facing the same error during any Microsoft Store process, you are advised to run Windows Store Apps troubleshooter.

To do so, have a glance at our guide How to Run Windows Update Troubleshooter and implement the steps as instructed. Once you have completed the Windows Update troubleshooter, you are advised to run the Microsoft Store Apps troubleshooter by following the similar steps as you did before.

windows store apps click on run the troubleshooter. Fix Windows 10 Update Store Error 0x80D05001

Follow the on-screen instructions to fix the problems reported by the troubleshooter.

Method 2: Close Background Processes

Not all the background processes are compatible and clean. Few of them might prevent you from accessing other several processes contributing to several issues. Once such issue is 0x80d05001 Windows 10 update or Microsoft Store error. So, in this case, you are advised to close all the background processes in your computer. Follow our guide How to End Task in Windows 10 to exit from all background processes or simply exit from every program one by one.

Click on End Task

After ensuring all the background processes being closed.

Also Read: Fix Windows Store Error 0x80072ee7

Method 3: Sync Time and Date

If the time and date settings in your region does not sync each other, you may not perform any functions in Microsoft Store. Before installing or performing any tasks in Microsoft Store, you must be aware of the fact that, these apps will check your computer for certain certificates and if the time, zone and date are incorrect at this stage, all the certificates will be considered as invalid. To adjust and confirm the date and time settings, follow the below-mentioned steps.

1. Press and hold Windows + I keys together to open Windows Settings.

2. Now, click on Time & Language.

Now, click on Time Language. Fix Windows 10 Update Store Error 0x80D05001

3. Then, in the Date & time tab, make sure Set the time automatically and Set the time zone automatically options are toggled on.

Then, in the Date time tab, make sure Set the time automatically and Set the time zone automatically options are toggled on

4. Then, click on Sync now as highlighted above.

5. Now, switch to the Region tab in the left menu and the Country or region option, make sure you choose the United States as shown.

Note: Changing the region will fix 0x80d05001 Microsoft Store error if the problem occurs for a particular region. Make sure you change the region back to your geographic area after fixing the issue.

Now, switch to the Region tab in the left menu and in the Country or region option, make sure you choose United States

Method 4: Delete Windows Store Cache

We suggest you to delete Windows Store cache is you face 0x80d05001 Microsoft Store error. This will clear all the corrupt cache and components in Windows Store thereby repairing it too. Removing Windows Store cache can be simply executed by a single command as instructed below.

1. Press and hold Windows + R keys simultaneously to open the Run dialog box.

2. Now, type wsreset.exe and hit Enter key.

Now, type wsreset.exe and hit Enter. Fix Windows 10 Update Store Error 0x80D05001

Ensure you have fixed 0x80d05001 Microsoft Store error.

Also Read: Fix Windows 10 Activation error 0x80072ee7

Method 5: Repair Corrupt Files

Apart from running troubleshooter, to fix corrupt files and components there are inbuilt utilities System File Checker (SFC) and Deployment Image Servicing and Management (DISM) inbuilt in system. If you guess corrupt system files are the culprit, you must initiate scanning your device that prevents 0x80d05001 Windows 10 update or Microsoft Store error. Read our guide on How to Repair System Files on Windows 10 and follow the steps as instructed to repair all your corrupt files.

Run SFC and DISM command lines to repair system files. Fix Windows 10 Update Store Error 0x80D05001

The result of the scanning process will show either of these messages:

  • Windows Resource Protection did not find any integrity violations.
  • Windows Resource Protection could not perform the requested operation.
  • Windows Resource Protection found corrupt files and successfully repaired them.
  • Windows Resource Protection found corrupt files but was unable to fix some of them.

Wait until the entire process gets completed and check if you have fixed the discussed error.

Method 6: Update Windows

Bugs and patch problems in your PC will often contribute to 0x80d05001 Windows 10 update error. Microsoft releases updates that are packed up with features and processes that will help you fix the problems in previous versions. Hence, ensure if you have updated your Windows Operating System and if there are any updates pending in action, use our guide How to Download and Install Windows 10 Latest Update

Update Windows. Fix Windows 10 Update Store Error 0x80D05001

After updating your Windows Operating System, check whether you have fixed 0x80d05001 Windows 10 update or Microsoft Store error.

Also Read: How to Redeem a Gift Card on Microsoft Account

Method 7: Run Malware Scan

Several Microsoft experts suggest that, scanning PC will help you maintain your computer threat free. If there are any virus or malware intrusions in your PC, you cannot install any new updates and apps in your Windows 10 PC. Hence, you are advised to scan your computer as instructed in our guide How do I Run a Virus Scan on my Computer?

Choose a scan option as per your preference and click on Scan Now

Also, if you want to remove malware in your computer, check our guide How to Remove Malware from your PC in Windows 10.

Method 8: Restart Essential Windows Services

Some important Windows services like Windows Update and Background Intelligent Transfer services must be enabled in your computer to avoid 0x80d05001 Windows 10 update error. The Background Intelligent Transfer services use any idle bandwidth to install any latest updates so that your computer installs any update only if there is no other installation is in progress. If these services are disabled in your system, you are more likely to face the discussed error. Hence, restart essential Windows services as instructed below.

1. Hit the Windows key, type Services and click on Run as administrator.

Type Services in the search menu and click on Run as administrator

2. Now, scroll down and double-click on Background Intelligent Transfer Service.

open Background Intelligent Transfer Service. Fix Windows 10 Update Store Error 0x80D05001

3. Now, select the Startup type to Automatic, as depicted.

Note: If the Service status is Stopped, then click on the Start button. If the Service status is Running, click on Stop and Start it again.

Now, select the Startup type to Automatic. Fix Windows 10 Update Store Error 0x80D05001

4. Click on Apply > OK to save the changes.

5. Repeat all these steps for other Windows services like Cryptographic, MSI Installer, and Windows Update Services.

Also Read: Fix Intel RST Service Is Not Running in Windows 10

Method 9: Disable Proxy or VPN (If Applicable)

Proxy servers bridges the gap between web pages and end users. For security reasons, the communication link with the proxy servers will be blocked by your computer and so 0x80d05001 Windows 10 update occurs. As per user reports, several users have confirmed that they were able to manage the discussed error by disabling proxy and VPN clients. If this situation is applicable to you, read our How to Disable VPN and Proxy on Windows 10 and implement the steps as instructed in the article.

Here, toggle OFF Proxy. Fix Windows 10 Update Store Error 0x80D05001

After disabling the VPN client and proxy servers, check if you have fixed 0x80D05001 error code. Still, if you face the same problem, try connecting to a mobile hotspot.

Method 10: Disable Antivirus Temporarily (If Applicable)

Your Microsoft Store actions can be blocked sometimes by your antivirus program and may end up with 0x80d05001 Windows 10 update or Microsoft Store error. To resolve any compatibility problems between your Windows Store and antivirus program, you must turn off some super security features in the security suite or disable the program completely from your PC. Read our guide on How to Disable Antivirus Temporarily on Windows 10 and follow the instructions to disable your Antivirus program temporarily on your PC.

Disable Antivirus Temporarily. Fix Windows 10 Update Store Error 0x80D05001

After installing apps from Microsoft Store on your Windows 10 PC, make sure to re-enable the antivirus program to avoid any malicious attacks.

Also Read: How to Uninstall McAfee LiveSafe in Windows 10

Method 11: Disable Windows Defender Firewall (Not Recommended)

Several users who have suffered with 0x80d05001 Windows 10 update or Microsoft Store error have confirmed that turning Firewall protection has helped to manage the issue. . If in case, any app has been blocked by Windows Defender Firewall, you have to enable it or disable the Firewall securities temporarily from your computer. If you do not know how to disable Windows Defender Firewall, our guide How to Disable Windows 10 Firewall will help you do so.

Now, check the boxes turn off Windows Defender Firewall not recommended

Make sure you re-enable the Firewall suite once you have installed the application you needed.

Method 12: Use Google DNS Addresses

Domain Name System (DNS) is essentially important to establish an internet connection. Sometimes, DNS addresses supplied by your Internet Service Provider might be very slow and so you will face 0x80d05001 Windows 10 update or Microsoft Store error in your Windows 10 PC. Google DNS has 8.8.8.8 and 8.8.4.4 IP addresses that are simple and easy to remember to establish a secure DNS connection between the client and the server.

Here is our simple guide on How to change DNS settings in Windows 10 that will help you change your DNS addresses on your computer. You can also switch to any Open DNS or Google DNS on your Windows 10 computer by following our guide How to Switch to OpenDNS or Google DNS on Windows. Follow as instructed and check if you can install any updates or apps from Microsoft Store on your PC.

Select the icon Use the following DNS server addresses

Also Read: How to Change DNS Server Settings on Windows 11

Method 13: Reset Windows Update Components

Few update component inconsistencies will lead to 0x80d05001 Windows 10 update error in your Windows 10 PC. This happens more frequent if your updating component is being stuck in limbo state (they neither open nor close at all). This problem can be quickly fixed by resetting the Windows Update components in your computer. To fix the corrupt Windows Update components in your computer, follow our guide on How to Reset Windows Update Components on Windows 10.

Type net stop wuauserv in the command window. Fix Windows 10 Update Store Error 0x80D05001

This simple process involves running a set of commands in the command prompt so that all the essential Windows services are restarted on your Windows 10 PC. After executing all the commands, check if you have fixed 0x80d05001 Windows 10 update or Microsoft Store error.

Note: You can use an automated repair tool to fix the discussed error.

Method 14: Tweak Windows Registry Files

Next, you are advised to clean the Windows update download path to fix 0x80d05001 Windows 10 update or Microsoft Store error. You must always be careful in handling the Windows registry, else you may end up losing your files. Follow the below-mentioned steps to tweak registry keys thereby fixing the discussed error.

1. Press the Windows key and type Registry editor, then click on Run as administrator.

open registry editor as administrator. Fix Windows 10 Update Store Error 0x80D05001

2. Now, go to the following path in the Registry Editor.

HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate

Now, copy and paste the following path in the Registry Editor navigation path

3. In the right pane, search for WUServer and WIStatusServer.

3A. If you cannot find them, you cannot remove the Windows update download path. Move ahead to the next troubleshooting method.

3B. If you can find the entries, right-click on them and click on Delete.

If you can find the entries, right click on them and click on Delete

4. Finally, restart your computer and check if you have fixed 0x80d05001 Windows 10 update error or not.

Also Read: Fix Windows 10 Update Pending Install

Method 15: Reset Microsoft Store

Clearing all the data and corrupt cache associated with Microsoft Store is made possible by resetting it. Yet, this process does not delete any apps and games you have installed already. So, you are advised to reset Microsoft Store to fix 0x80d05001 Microsoft Store error.

1. Hit the Windows key and type Microsoft Store, then click on App settings.

Now, select the App settings option. Fix Windows 10 Update Store Error 0x80D05001

3. Now, scroll down the Settings screen and click on the Reset option as highlighted.

Note: Your app data will be deleted while resetting Microsoft Store.

reset microsoft store

4. Now, confirm the prompt by clicking on Reset and rebooting your computer.

Now, confirm the prompt by clicking on Reset and reboot your computer

Method 16: Re-register Microsoft Store

If resetting Microsoft Store does not fix 0x80D05001 Microsoft Store error code, re-registering it might help you. Follow as instructed below.

1. Press the Windows key and type Windows PowerShell, then, click on Run as administrator.

Then, click on Run as administrator

3. Now, type the given command and hit Enter key.

PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + 'AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}

Now, paste the command lines in the Windows PowerShell and hit Enter

4. Wait for the command to be executed and try opening Microsoft Store. Now, you will be able to launch Minecraft without any errors.

Also Read: How to Fix Error 0x80070002 Windows 10

Method 17: Reinstall Microsoft Store

If all of these methods fail to help you fix the discussed error, then you have no other options than to reinstall the Microsoft Store. This will remove the entire corrupt files associated with the app and will never face the 0x80D05001 error code caused in Microsoft Store processes.

1. Launch Windows PowerShell as administrator.

2. Now, type get-appxpackage –allusers and hit Enter key.

Now, type get appxpackage allusers and hit Enter. Fix Windows 10 Update Store Error 0x80D05001

3. Now, search for Microsoft.WindowsStore Name and copy the entry of PackageFullName.

Now, search for Microsoft.WindowsStore Name and copy the entry of PackageFullName

4. Now, go to a new line in the PowerShell window and type remove-appxpackage followed by a space and the line you have copied in the before step. It looks like,

remove-appxpackage Microsoft.WindowsStore_22202.1402.2.0_x64__8wekyb3d8bbwe

Note: The command may vary a little according to the version of Windows you use.

Now, go to a new line in the PowerShell window and type remove appxpackage followed by a space and the line you have copied in the before step.

5. Now, Microsoft Store will be deleted from your PC. Now, reboot the PC.

6. Then, to reinstall it, again open Windows PowerShell as an administrator and type the following command.

Add-AppxPackage -register "C:\Program Files\WindowsApps\Microsoft.WindowsStore_11804.1001.8.0_x64__8wekyb3d8bbwe\AppxManifest.xml" –DisableDevelopmentMode

Then, to reinstall it, again open Windows PowerShell as an administrator and type Add AppxPackage register CProgram Files WindowsApps Microsoft.WindowsStore 11804.1001.8.0 64 8wekyb3d8bbwe AppxManifest.xml DisableDevelopmentMode

7. Finally, Microsoft Store will be reinstalled on your PC and you will not any error codes again.

Method 18: Create New User Profile

All user profile related errors and glitches can be fixed by creating a new user account. You can create a new user profile by following the steps discussed in our guide, How to Create a Local User Account on Windows 10

Create New User Profile in Windows 10 PC. Fix Windows 10 Update Store Error 0x80D05001

After creating a new user profile, check if you have fixed 0x80D05001 Windows Store error.

Also Read: Fix Windows Update Error 0x80070005

Method 19: Perform System Restore

If none of the methods has helped you, then try resetting your computer to the previous version where it was working well. You can easily implement the same by following our guide on How to use System Restore on Windows 10.

Finally, confirm the restore point by clicking on the Finish button.

Thanks to this feature. Now, you would have fixed 0x80D05001 Windows update or Microsoft Store error.

Method 20: Reset PC

If you find no issues with Microsoft Store, but still facing 0x80D05001 error code, we advise you to reset your computer. To resolve the discussed problem, read and implement the steps in our guide How to Reset Windows 10 Without Losing Data.

Now, choose an option from the Reset this PC window.

Recommended:

  • Fix Network Error 0x00028001 on Windows 10
  • Fix Can’t Install Cumulative Update KB5008212 in Windows 10
  • How to Fix Windows Update 0x80070057 Error
  • Fix Windows 10 Update Error 0x80072ee7

We hope the guide was useful and you were able to fix 0x80d05001 Windows 10 update error. Keep visiting our page for more cool tips & tricks and leave your comments below. Let us know what you want to learn about next.

Try uninstalling any VPN apps or fixing the system files

by Sagar Naresh

Sagar is a web developer and technology journalist. Currently associated with WindowsReport and SamMobile. When not writing, he is either at the gym sweating it out or playing… read more


Updated on

  • Windows update error code 0x80d05001 is a different error from the Microsoft Store error 0x80d05001.
  • This error prevents users from installing the latest available Windows updates on their PC.
  • To fix this, you can check if the Bluetooth Intelligent Service is running or reset the Windows update service.

XINSTALL BY CLICKING THE DOWNLOAD
FILE

Well, there is a long list of Windows update errors that you will face on your Windows PC, irrespective of the OS version you are running.

In this guide, we will discuss the Windows update error 0x80d05001. This error is different from the error 0x80D05001 in Microsoft Store. Here is the complete error message that you will come across:

Download error – 0x80d05001
There were problems downloading some updates, but we’ll try again later. if you keep seeing this, try searching the web or contacting support for help. this error code might help: (0x80d05001)

Why am I getting Windows update error 0x80d05001?

We have found some of the most common reasons that will trigger the Windows update error 0x80d05001.

  • Windows update glitch: There might be a normal bug in the Windows update service that is preventing you from downloading the update.
  • You are using a VPN: If you are using a VPN, then this could conflict with the Windows update servers and trigger the update error 0x80d05001.
  • Aggressive Firewall: Often aggressive Firewall or antivirus setting can also block important Windows services, which could be causing the problem.
  • System files are corrupt: Missing or corrupt system files will not only trigger Windows update errors but will also hamper the smooth performance of your PC.

The Windows Update error 0x8024a21e can also be daunting but the highlighted guide will help you with tested solutions.

How can I fix Windows update error 0x80d05001?

Here are a few fixes that we would suggest you try before going ahead with the advanced troubleshooting methods:

  • Restart your PC as it will help the system load all the files from scratch. Here’s what to do if your computer fails to restart.
  • Run the Windows update again and check if it lets you download the update or continues to throw the error.
  • Disconnect external devices such as Bluetooth mouse, keyboard, etc., and check if the update is starting or not.

Now, let us check out the solutions that have helped users fix the problem.

1. Run the Windows update troubleshooter

  1. Press the Win + I buttons to open Settings.
  2. Click on Troubleshoot.
  3. Select Other troubleshooters.
  4. Hit the Run button for Windows Update.
  5. The troubleshooting process will begin and will prompt you to apply the fixes if it detects any issues.

Windows OS comes with an in-built troubleshooting tool that can help you resolve some petty bugs or glitches that might be preventing you from using the feature perfectly.

2. Reset the Windows update

  1. Press the Win key to open the Start menu.
  2. Type the command prompt and open it as an administrator.
  3. Execute the below commands and press Enter after each one. net stop wuauserv net stop cryptSvc net stop bits net stop msiserver
  4. Run the below commands and press Enter after each one. ren C:\Windows\SoftwareDistribution SoftwareDistribution.old ren C:\Windows\System32\catroot2 Catroot2.old
  5. Execute the below commands. net start wuauserv net start cryptSvc net start bits net start msiserver
  6. Restart your PC and check if this fixes the issue or not.
Read more about this topic

  • Error Code 801c03ed: How to Fix it on Windows 11
  • Windows 11 23H2: How to Download the Official ISO
  • Fix: Your Organization Requires You to Change Your PIN

3. Disable the proxy server

  1. Press the Win + I keys to open the Settings menu.
  2. Select Network & Internet.
  3. Click on Proxy.
  4. Under Manual proxy setup, click the Set up button.
  5. Turn on the Use a proxy server option.
  6. Restart your PC.

4. Uninstall VPN

  1. Open the Start menu by pressing the Win button.
  2. Open Control Panel.
  3. Click on Programs and Features.
  4. Select the VPN and hit the Uninstall button.
  5. Follow the on-screen prompts to remove the VPN from your PC.
  6. Restart your PC.

We have shown the steps for removing a different program, but the steps are the same for removing any VPN from your PC.

5. Run SFC Scan and DISM commands

  1. Open the Start menu.
  2. Type command prompt and run it as an administrator.
  3. Type the below command and press Enter.sfc /scannow
  4. Wait for the process to complete.
  5. Execute the below commands.Dism /Online /Cleanup-Image /Check healthDism /Online /Cleanup-Image /restorehealth
  6. Let the process complete.
  7. Restart your PC.

You can make use of the SFC Scan and DISM commands to check the health of your PC and fix the corrupt or missing system files.

While the above process requires you to use some commands, it isn’t a cup of tea for everyone. Some like to use an automated program that will do everything for them with just a click.

For those users, we would recommend using the Fortect app. Using Fortect, not only you will fix corrupt or missing system files, but also fix BSOD (Blue Screen of Death) errors, damaged DLLs, system crashes, and much more.

⇒ Get Fortect

6. Run the Background Intelligent Transfer Service

  1. Press the Win + R keys to open the Run dialogue.
  2. Type services.msc and press Enter.
  3. Locate Background Intelligent Transfer Service and double click on it.
  4. Under Service Status, select Start.
  5. From the Start up type drop-down select Automatic.

That is it from us in this guide. We have a guide for users getting Windows update error 0X800f081f. You can also refer to our guide on 0x800f0988 Windows Update error to fix the problem.

Our guide on Windows update error 0x80070002 and update error 0x800f0905 will help you resolve the problem with some effective solutions.

We have listed five quick tips to resolve the Windows update error 0x800704cf. You can also check out our guide on update error 0x800f0831. Let us know in the comments below which one of the above solutions resolved the problem for you.

newsletter icon

Some Windows 10 users are encountering the 0x80D05001 error code after a Windows Update or Windows Store app update fails to install. The majority of users are seeing this error with every new update that they attempt to install.

Windows Update / Store Error 0x80D05001

There are several potential culprits that might trigger the Error 0x80D05001 with Windows Update or Windows Store:

  • Common WU / Store glitch – When troubleshooting for this issue, you should start by attempting to fix the issue automatically with utilities like Windows Update Troubleshooter or Windows Store Troubleshooter.
  • Update component inconsistency – If you see this error while attempting to install an update, you should reset the Windows Update / Windows Store component completely (depending on the specifics of your problem.
  • Improperly Configured Proxy or VPN – This error code can also occur due to an improperly configured proxy server or VPN client that is being rejected by Windows Update or Windows Store. If this scenario is applicable, you can disable the Proxy server or uninstall your VPN client.
  • Overprotective firewall – If you’re using a 3rd party firewall, a certain feature that block pop-ups might also interfere with the Windows Update function. In this case, you will need to disable the real-time protection or uninstall it altogether if the security rules are enforced at a system level.
  • Underlying system file corruption – Under certain circumstances, you might be dealing with some type of system corruption that ends up affecting Windows Update or Windows Store. In this case, you can use SFC and DISM scans to identify and fix the corruption problems that are contributing to this issue.

Method 1: Running the Windows Update/ Windows Apps Troubleshooter

If this particular error is being facilitated by a common inconsistency, your first attempt at fixing the issue should be the Windows Update Troubleshooter. This built-in utility holds together a collection of repair strategies that can be automatically applied in case a recognizable scenario is identified.

After you launch this utility, it will begin to scan for common Windows Update inconsistency and recommend a viable repair strategy that you can apply with just several clicks.

Note: In case you are encountering the 0x80D05001 error when attempting to update an app via the built-in Windows Store, you will need to run the Windows Apps Troubleshooter instead.

If you didn’t try this potential fix yet, follow the instructions below to run the Windows Update troubleshooter / Windows Apps Troubleshooter and apply the recommended repair strategy:

  1. Open up a Run dialog box by pressing Windows key + R. Next, type ‘ms-settings:troubleshoot’ and press Enter to open up the Troubleshooting tab of the Settings app.
    Accessing the Activation troubleshooter
  2. Once you’re inside the Troubleshooting tab, scroll down to the Get up and running section click on Windows Update. From the newly appeared context menu, click on Run the troubleshooter.
    Running Windows Update Troubleshooter

    Note: In case you are having issues when updating an app via the Microsoft Store, you need to run the Windows Apps Troubleshooter instead.

  3. After you launch this utility, wait patiently until the initial scan is complete. If the problem and a viable repair strategy are identified, you will be able to apply the recommended fix by clicking on Apply this fix. If you’re presented with this option, do so and wait for the process to complete.
    Apply this fix for Windows Update
  4. Once the repair operation is complete, reboot manually and see if the issue is resolved at the next computer startup by attempting to install an update that was previously failing.

In case the same problem is still occurring, move down to the next potential fix below.

Method 2: Resetting Windows Update / Windows Store

In case the built-in troubleshooter that you deployed above didn’t work for you, it’s likely that you’re seeing the 0x80D05001 error due to an update component inconsistency (especially if you’re seeing this error with every update that you attempt to install).

In most cases, you will see the 0x80D05001 error due to the fact that the updating component is somehow stuck in a limbo state (neither opened or closed). If this scenario is applicable, you should be able to fix the problem swiftly by resetting Windows Update or Windows Store (depending on the specifics of your problem).

To accommodate both potential scenarios, we’ve created 2 separate sub guides. If you’re encountering the issue when installing a Windows update, follow the first guide (A). In case you’re seeing the error when installing an update through Windows Store (Microsoft Store), follow the second guide (B):

A. Resetting Windows Update

  1. Press Windows key + R to open up a Run dialog box. Next, type ‘cmd’ and press Ctrl + Shift + Enter to open up an elevated Command Prompt window.
    Running Command Prompt with admin access

    Note: Once you are prompted by the UAC (User Account Control), click Yes to grant admin access.

  2. Once you’re inside an elevated CMD window, type the following commands in whichever order and press Enter after each one:
    net stop wuauserv
    net stop cryptSvc
    net stop bits
    net stop msiserver

    Note: This set of commands will stop all the relevant Windows Update services from running: BITS service, Cryptographic service, MSI Installer service, Windows update service (main).

  3. After you manage to stop every relevant service, run the following commands in order to clear and rename two vital WU folders (SoftwareDistribution and Catroot2):
    ren C:\Windows\SoftwareDistribution SoftwareDistribution.old 
    ren C:\Windows\System32\catroot2 Catroot2.old

    Note: SoftwareDistribution and Catroot are the two main folders responsible for holding and maintaining Windows Update files. Since you can’t really delete them conventionally, the best way to ensure that they don’t have any corrupted files that might contribute to this error is to rename them in order to force your OS to create new and healthy equivalents.

  4. Once the two folders have been renamed, run the following commands in order to re-enable the services that you previously disabled (at step 2):
    net start wuauserv
    net start cryptSvc
    net start bits
    net start msiserver
  5. Once every relevant service has been restarted, repeat the WU action that was previously triggering the 0x80D05001 error and see if the problem is now fixed.

B. Resetting Windows Store

  1. Open up a Run dialog box by pressing Windows key + R. Next, type ‘cmd’ inside the text box and press Ctrl + Shift + Enter to open up an elevated Command Prompt window. When you see the User Account Control (UAC) prompt, click Yes to grant admin access.
    Running the Command Prompt
  2. Inside the elevated Command Prompt, type the following command and press Enter to initiate a complete Windows Store reset (and also clear any associated dependencies):
    wsreset.exe

    Resetting Windows Store
  3. After the operation is complete, attempt to install the app update once again and see if the problem is now fixed.

In case you’ve already reset Windows Update or Windows Store and you’re still seeing the same error message, move down to the next potential fix below.

Method 3: Disable Proxy or VPN client (if applicable)

This particular error code is often an underlying sign that you are dealing with an improperly configured proxy server or VPN client that is being rejected by Windows Update. Due to security reasons, Windows Update might decide to distrust the VPN / Proxy connection and block communications with it.

Several affected users that have previously dealt with this problem have confirmed that they managed to fix the issue after they disabled their VPN Client or Proxy server.

If this scenario is applicable, follow one of the two sub-guides bellows to get rid of the VPN client you’re currently using or disable the Proxy server that’s currently active:

A. Disable Proxy Server on Windows

  1. Press Windows key + R to open up a Run dialog box. Inside the newly appeared Run box, type ‘ms-settings:network-proxy’ and press Enter to open up the Proxy tab of the Settings menu.
    Running Services in the Run dialog box
  2. Once you’re inside the Proxy tab of the Settings menu, scroll all the way down to the Manual proxy setup. When you get there, simply disable the toggle associated with Use a proxy server.
    Disabling the use of a proxy server
  3. Once you complete this modification, reboot your computer and repeat the action that was previously causing the 0x80D05001 error.

B. Uninstall VPN client on Windows

  1. Open up a Run dialog box by pressing Windows key + R. Next, type ‘appwiz.cpl’ and hit Enter to open up the Programs and Features menu.
    Type appwiz.cpl and Press Enter to Open Installed Programs List
  2. Once you’re inside the Programs and Features screen, scroll down through the list of installed applications and locate the VPN client that you’re looking to uninstall.
  3. After you manage to identify your VPN client, right-click on it and choose Uninstall from the newly appeared context menu.Uninstalling a VPN tool
    Uninstalling a VPN tool
  4. Once you’re inside the uninstallation window, follow the on-screen prompts to complete the process, then restart your computer.
  5. After the process is complete, restart your computer and see if the 0x80D05001 error is resolved.

In case this potential fix is not applicable to your particular scenario, move down to the next potential fix below.

Method 4: Disable Overprotective Firewall (if applicable)

As some affected users have confirmed, the 0x80D05001 error can also be facilitated by an overprotective firewall function. For example, certain 3rd party firewalls have a security suite that blocks pop-ups. Well, as it turns out, this function can also end up blocking the Updating function on Windows 10.

In case you’re using a 3rd party firewall that you suspect might be responsible, you should start by attempting to disable the real-time protection before repeating the updating operation. In most cases, AV suites will allow you to do this directly from the taskbar icon.

Disabling the real-time protection on Avast Antivirus

Disabling the real-time protection on Avast Antivirus

Once you’ve disabled your firewall, attempt to perform the update again and see if the issue is resolved.

If that didn’t work, keep in mind that some firewalls enforce restrictions at a network level and often enough, these security rules will remain in place even if the real-time protection is disabled. Because of this, you should also try uninstalling your firewall and removing any remnant files before ruling this potential culprit out.

In case this scenario is not applicable or you’ve already done this and you’re still seeing the 0x80D05001 error, move down to the final fix below.

Method 5: Running SFC and DISM scans

If none of the fixes detailed above have worked for you, there’s a high chance that the problem is actually being facilitated by some type of system file corruption that ends up affecting the Windows Update or Windows Store component.

If this is your culprit, you should be able to fix the issue by initiating an SFC scan and wait patiently until the process is complete. But keep in mind that once you start this process, forcibly closing the CMD window might produce additional logical errors.

Typing “sfc/scannow” in the command prompt.

After this SFC scan is complete, reboot your machine and see if the issue is fixed. In case you’re still encountering the 0x80D05001 error, advance with initiating a DISM scan.

Scanning System Files