Ошибка 0x800706d9 0x20000

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

Как исправить ошибку 0x800706d9?

Прежде всего, создайте точку восстановления на вашем компьютере. Она поможет вам в случае того, если что-то пойдет не так. Нажмите Win+S и пропишите в поисковую строку запрос «Создание точки восстановления». В появившемся окошке выполните все необходимые действия и создайте точку на одном из разделов диска. Как только закончите, переходите к методам ниже.

0x800706d9

Метод №1 Включение брандмауэра Windows

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

  • нажмите Win+S для вызова поисковой строки;
  • пропишите запрос «Брандмауэр Защитника Windows»;
  • кликните на ссылку «Включение и выключение брандмауэра Защитника Windows» в левой части окошка;
  • выберите опции по включению брандмауэра и сохраните внесенные изменения;
  • перезагрузите компьютер и попробуйте запустить апдейт ОС Windows еще раз.

Метод №2 Проверка параметров служб брандмауэра и Центра обновления

Возможно, параметры служб брандмауэра и Центра обновления были изменены, вследствие чего те перестали нормально функционировать. Вот что вам нужно сделать:

  • нажмите комбинацию Win+R;
  • пропишите в пустой строчке services.msc и нажмите Enter;
  • найдите в списке службу «Центр обновления Windows» и дважды кликните на нее ЛКМ;
  • выставьте в типе запуске значение «Автоматически»;
  • сохраните выставленные настройки и закройте окно свойств службы;
  • сделайте все вышеописанное для службы «Брандмауэр Защитника Windows»;
  • перезагрузите компьютер и проверьте наличие ошибки 0x800706d9.

Метод №3 Запуск средства устранения неполадок Центра обновления

В некоторых случаях приходится положиться на системное средство устранения неполадок. Оно не всегда помогает, но попробовать все же стоит. Сделать это можно вот так:

  • нажмите Win+S;
  • пропишите «Устранение общих проблем» и выберите результат;
  • выберите пункт «Центр обновления Windows» и нажмите на кнопку «Запустить средство устранения неполадок»;
  • следуйте инструкциям, которые предлагает вам средство;
  • перезагрузите компьютер, если в этом будет необходимость.

Как только зайдете в Windows, запустите процесс обновления и проверьте, была ли решена ошибка 0x800706d9.

Метод №4 Сброс компонентов Центра обновления

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

  • нажмите Win+R;
  • напишите notepad.exe и нажмите Enter;
  • вставьте в окно Блокнота следующие команды:

:: Run the reset Windows Update components.
:: void components();
:: /*************************************************************************************/
:components
:: —— Stopping the Windows Update services ——
call :print Stopping the Windows Update services.
net stop bitscall :print Stopping the Windows Update services.
net stop wuauservcall :print Stopping the Windows Update services.
net stop appidsvccall :print Stopping the Windows Update services.
net stop cryptsvccall :print Canceling the Windows Update process.
taskkill /im wuauclt.exe /f
:: —— Checking the services status ——
call :print Checking the services status.sc query bits | findstr /I /C:»STOPPED»
if %errorlevel% NEQ 0 (
echo. Failed to stop the BITS service.
echo.
echo.Press any key to continue . . .
pause>nul
goto :eof
)call :print Checking the services status.

sc query wuauserv | findstr /I /C:»STOPPED»
if %errorlevel% NEQ 0 (
echo. Failed to stop the Windows Update service.
echo.
echo.Press any key to continue . . .
pause>nul
goto :eof
)

call :print Checking the services status.

sc query appidsvc | findstr /I /C:»STOPPED»
if %errorlevel% NEQ 0 (
sc query appidsvc | findstr /I /C:»OpenService FAILED 1060″
if %errorlevel% NEQ 0 (
echo. Failed to stop the Application Identity service.
echo.
echo.Press any key to continue . . .
pause>nul
if %family% NEQ 6 goto :eof
)
)

call :print Checking the services status.

sc query cryptsvc | findstr /I /C:»STOPPED»
if %errorlevel% NEQ 0 (
echo. Failed to stop the Cryptographic Services service.
echo.
echo.Press any key to continue . . .
pause>nul
goto :eof
)

:: —— Delete the qmgr*.dat files ——
call :print Deleting the qmgr*.dat files.

del /s /q /f «%ALLUSERSPROFILE%\Application Data\Microsoft\Network\Downloader\qmgr*.dat»
del /s /q /f «%ALLUSERSPROFILE%\Microsoft\Network\Downloader\qmgr*.dat»

:: —— Renaming the softare distribution folders backup copies ——
call :print Deleting the old software distribution backup copies.

cd /d %SYSTEMROOT%

if exist «%SYSTEMROOT%\winsxs\pending.xml.bak» (
del /s /q /f «%SYSTEMROOT%\winsxs\pending.xml.bak»
)
if exist «%SYSTEMROOT%\SoftwareDistribution.bak» (
rmdir /s /q «%SYSTEMROOT%\SoftwareDistribution.bak»
)
if exist «%SYSTEMROOT%\system32\Catroot2.bak» (
rmdir /s /q «%SYSTEMROOT%\system32\Catroot2.bak»
)
if exist «%SYSTEMROOT%\WindowsUpdate.log.bak» (
del /s /q /f «%SYSTEMROOT%\WindowsUpdate.log.bak»
)

call :print Renaming the software distribution folders.

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» (
attrib -r -s -h /s /d «%SYSTEMROOT%\SoftwareDistribution»
ren «%SYSTEMROOT%\SoftwareDistribution» SoftwareDistribution.bak
if exist «%SYSTEMROOT%\SoftwareDistribution» (
echo.
echo. Failed to rename the SoftwareDistribution folder.
echo.
echo.Press any key to continue . . .
pause>nul
goto :eof
)
)
if exist «%SYSTEMROOT%\system32\Catroot2» (
attrib -r -s -h /s /d «%SYSTEMROOT%\system32\Catroot2»
ren «%SYSTEMROOT%\system32\Catroot2» Catroot2.bak
)
if exist «%SYSTEMROOT%\WindowsUpdate.log» (
attrib -r -s -h /s /d «%SYSTEMROOT%\WindowsUpdate.log»
ren «%SYSTEMROOT%\WindowsUpdate.log» WindowsUpdate.log.bak
)

:: —— Reset the BITS service and the Windows Update service to the default security descriptor ——
call :print Reset the BITS service and the Windows Update service to the default security descriptor.

sc.exe sdset wuauserv D:(A;;CCLCSWLOCRRC;;;AU)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCDCLCSWRPWPDTLCRSDRCWDWO;;;SO)(A;;CCLCSWRPWPDTLOCRRC;;;SY)S:(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;WD)
sc.exe sdset bits D:(A;;CCLCSWLOCRRC;;;AU)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCDCLCSWRPWPDTLCRSDRCWDWO;;;SO)(A;;CCLCSWRPWPDTLOCRRC;;;SY)S:(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;WD)
sc.exe sdset cryptsvc D:(A;;CCLCSWLOCRRC;;;AU)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCDCLCSWRPWPDTLCRSDRCWDWO;;;SO)(A;;CCLCSWRPWPDTLOCRRC;;;SY)S:(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;WD)
sc.exe sdset trustedinstaller D:(A;;CCLCSWLOCRRC;;;AU)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCDCLCSWRPWPDTLCRSDRCWDWO;;;SO)(A;;CCLCSWRPWPDTLOCRRC;;;SY)S:(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;WD)

:: —— Reregister the BITS files and the Windows Update files ——
call :print Reregister the BITS files and the Windows Update files.

cd /d %SYSTEMROOT%\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

:: —— Resetting Winsock ——
call :print Resetting Winsock.
netsh winsock reset

:: —— Resetting WinHTTP Proxy ——
call :print Resetting WinHTTP Proxy.

if %family% EQU 5 (
proxycfg.exe -d
) else (
netsh winhttp reset proxy
)

:: —— Set the startup type as automatic ——
call :print Resetting the services as automatics.
sc.exe config wuauserv start= auto
sc.exe config bits start= delayed-auto
sc.exe config cryptsvc start= auto
sc.exe config TrustedInstaller start= demand
sc.exe config DcomLaunch start= auto

:: —— Starting the Windows Update services ——
call :print Starting the Windows Update services.
net start bits

call :print Starting the Windows Update services.
net start wuauserv

call :print Starting the Windows Update services.
net start appidsvc

call :print Starting the Windows Update services.
net start cryptsvc

call :print Starting the Windows Update services.
net start DcomLaunch

:: —— End process ——
call :print The operation completed successfully.

echo.Press any key to continue . . .
pause>nul
goto :eof
:: /*************************************************************************************/

  • нажмите на пункт «Файл» в строке меню и выберите «Сохранить как…»;
  • задайте файлу имя «WinUpdReset.cmd» (обязательно укажите расширение CMD в конце!) и сохраните его в удобное для вас место;
  • дважды кликните ЛКМ на созданный WinUpdReset.cmd и следуйте инструкциям в окошке Командной строки;
  • перезагрузите компьютер по окончанию сброса компонентов Центра обновления.

После выполнения этого процесса ошибка 0x800706d9 не должна вас больше донимать.

Restart essential associated services to easily fix this error

by Claire Moraa

Claire likes to think she’s got a knack for solving problems and improving the quality of life for those around her. Driven by the forces of rationality, curiosity,… read more


Updated on

  • The Microsoft Store is an all-in-one hub for downloading apps, so it is concerning when it fails to do so.
  • Usually, a restart of the application should do the trick to salvage the situation. However, if this fails, try other troubleshooting steps, such as the SFC scan.

0x800706d9 is an error code that appears when installing an app from the Microsoft Store. The Microsoft Store is one of the most important apps in Windows 11 as it is the one-stop shop for all your apps.

If Microsoft Store isn’t working, you’ll be unable to update or download apps. This can affect many applications, so you need to get to the bottom of this issue immediately. Luckily, we have compiled the top solutions for you, as reported by users.

What is problem 0x800706d9?

Problem 0x800706d9 is a common error that occurs during the installation or update process of an app from the Microsoft Store. This error has many causes, but the most common ones are:

  • Firewall settings – If you see this message while downloading an app, it could mean your network administrator or firewall blocked the app.
  • Corrupt installation files – The error is usually caused by an installation package that’s corrupted or incomplete. It can also be triggered by system files that have been damaged.
  • Internet connection problems – If your internet connection isn’t working properly, you won’t be able to access Microsoft Store or download/install apps and games.
  • Corrupted cache files – Sometimes, corrupted cache files can accumulate over time and cause this issue. 
  • Insufficient funds – If you’re trying to purchase and download an app, the download may fail because you don’t have enough money in your account.

How do I fix error code 0x800706d9?

To resolve this error, try these basic troubleshooting steps first:

  • Ensure you have connected your PC to the internet, preferably via Ethernet cable instead of Wi-Fi.
  • Check your date and time settings. The date and time on your computer can affect how programs behave, so it’s important to make sure Windows has the correct time and date set.
  • Try signing out of your Microsoft account, then sign back in after 30 seconds.
  • Ensure that you have sufficient funds in your Microsoft account if you were trying to purchase an app.
  • Make sure that your credit card information is correct on file so that it matches up with what is on your screen.
  • Verify that your security software isn’t blocking Microsoft Store from communicating with its servers. 
  • Delete and reinstall the app that is giving you the error.

1. Run the Windows Store troubleshooter

  1. Hit the Windows key and click on Settings.settings windows 11
  2. Click on System on the left pane then Troubleshoot on the right pane.Open system troubleshooter
  3. Select Other troubleshooters.other troubleshooters
  4. Scroll down, locate Windows Store Apps and click the Run button.clicking run windows store apps troubleshooter

2. Restart Windows services

  1. Hit the Windows + R keys to open the Run command.
  2. Type services.msc in the dialog box and click OK.run services.msc command
  3. Find the Windows Update service, right-click on it, and select Properties.
  4. Under Startup type, select Automatic from the drop-down menu, click Start then press Apply and OK to save changes. 
  5. Repeat steps 1 to 4 with Storage Service and Windows Defender Firewall as well.

3. Run the DISM and SFC scans 

  1. Hit the Windows key, type cmd and hit Run as administrator.cmd-run-admin-w11 unexpected kernel mode trap windows 11
  2. Type the following commands and press Enter after each one: DISM /Online /Cleanup-Image /RestoreHealth sfc /scannow

4. Reset the Microsoft Store cache

  1. Hit the Windows Search icon.
  2. Type WSReset.exe in the search bar and hit Run as administrator.

5. Repair/reset Microsoft Store

  1. Hit the Windows key and click on Settings.settings windows 11
  2. Click on Apps on the left pane then Apps & features on the right pane.
  3. Locate the Microsoft Store app, click on the three vertical ellipses and select Advanced options.going advanced options microsoft store
  4. Click on Repair.
  5. Go back and click on Reset if the repair option failed.

In case Microsoft Store is missing from the Apps and features section, here’s what to do to restore it.

Read more about this topic

  • Error Authenticating With Venmo: 6 Ways to Fix it
  • Fix: Internet Speed is Fast, but Video Calls are Slow
  • Fix: MSI Afterburner Failed to Start Scanning
  • Windows 11 Keeps Chiming? Stop it in 8 Steps
  • Spacebar, Enter, and Backspace are Not Working on Windows 11 [Fix]

6. Reinstall the Microsoft Store

  1. Press the Windows + I keys simultaneously to open Settings.settings windows 11
  2. Type Powershell in the search bar and click Run as administrator.
  3. Enter the following command: Get-AppxPackage -allusers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"

Aside from the error code 0x8007069d, you may also come across an issue where the Microsoft Store fails to download anything. This should not be a cause for alarm, as we have already covered ways to overcome this hurdle.

If you frequent the Microsoft Store, you may get bored of the default theme over time. Don’t worry, as we are here to help refresh things. Check out our impressive library of the best Microsoft Store themes that will elevate your browsing experience.

Find out more in our in-depth review of the Microsoft Store and get to learn about all that it has to offer.

Let us know which solution fixed this error in the comment section below. 

newsletter icon

Did you recently encounter Error Code 0x800706d9 while opening a Store app, launching Sandbox, or updating Windows 10? Well, in this guide, we explore the reasons that lead to this bug in the first place along with some working ways to resolve the issue. 

The error 0x800706d9 may occur due to corrupt system files, missing Windows components, fail to start certain services, storage-related issues, etc. In general, we can categorize them into four different types and each one has its own set of solutions. If you do know why you are receiving this error, reach out to the specific section below –

  1. Update Error 0x800706D9 
  2. Sandbox Error 0x800706D9 
  3. Microsoft Store Error 0x800706D9 
  4. Windows Defender Error 0x800706D9 

To solve the Update error 0x800706D9, try the below workarounds –

1] Run System File Checker

The update error 0x800706D9 occurs mainly due to corrupt or missing system files. SFC is a great utility program designed to scan and repair damaged system files. Here’s how to use this tool –

  • First of all, open Command Prompt with Admin rights.
  • Copy/paste sfc/ scannow on the elevated console and press the Enter key.

SFC Scannow

  • This usually takes 15-20 minutes to locate and repair corrupt system files. In certain cases, this might even take more time, so wait accordingly.
  • Once over, Restart Windows so that changes made come into effect.

2] Manually Install Cumulative Update

If the error persists, one should manually download and install the recent standalone package on the computer. Here’s how to perform this task –

  • First of all, visit the Windows 10 Update History page.
  • On the left column, select the Windows 10 version that you are having on the computer.
  • Scroll down to “In this release“. 
  • Note down the KB number and reach out to the Microsoft Update Catalog site.
  • Paste the KB number noted down earlier and hit Enter. A list of matching results will pop-up. 
  • Look for the system architecture 
  • Here, hit the Download button next to the system architecture that you are currently having
  • On the subsequent screen, click the top link to download the .msu file.

After the file gets downloaded, browse to the Download folder and double-click the setup to install this.

3] Purge Windows Update Folder

Usually, manually installing the recent cumulative update will resolve any update-related issues on Windows 10. If the 0x800706D9 bug persists even after this, purge the update folder and reinstall the setup file (downloaded above). Here’s how to purge Windows update folder –

  • Type “regedit” on the search bar and click the top result.
  • When the UAC window prompts, hit Yes.
  • On the registry window, navigate to – 

HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate

Note: If you don’t find the WindowsUpdate folder at the above location, use either system backup or clean install Windows 10, May 2020 Update.

  • Head over to the right pane and search for WUServer and WIStatusServer folders.
  • Right-click on each one of them and select “delete“.
  • Restart Windows to save the recent changes.

Sign back into Windows 10 and re-follow the method-2.

Fix: Windows Sandbox Error 0x800706d9

The Sandbox error 0x800706D9 may occur due to some corruption inside the system files, certain services not working properly, or installing an incorrect feature update. To correct this, attempt to disable then re-enable Hyper-V services.

Note: Make sure to enable the virtualization settings inside the computer BIOS or Firmware menu before proceeding to the solutions. 

Here’s how to fix disable then re-enable Hyper-V related services –

1] Check the status of Hyper-V Related Services

  • Press Win+S to invoke the Search UI.
  • Type “services” in the text field and click the top result.

Services Window

  • Now, check each one of the services below.
  • If you find any one of them as “stopped”, hit “Start” to restart them.
Network Virtualization Service
Virtual Disk
Hyper-V Virtual Machine Manager
Hyper-V Host Compute Service
Container Manager Services
Application Guard Container Service
Remote Procedure Call (RDC)

2] Disable and Enable Hyper-V

First of all, disable the following services –

  1. Windows Defender Random Folder Protection 
  2. Tamper Protection Service
  3. Container Manager service
  4. Windows Sandbox

Next, browse to the below paths –

C:\ProgramData\Microsoft\Windows\Containters\Sandboxes

C:\ProgramData\Microsoft\Windows\Containters\Zygotes

Here, search for VHDX files and delete them. However, make sure not to delete these files from the recycle bin. Now, re-enable the services that you have stopped earlier following the exact reverse order i.e. –

  1. Windows Sandbox
  2. Container Manager service
  3. Tamper Protection Service
  4. Windows Defender Random Folder Protection 

Do Restart Windows to incorporate the above changes. From the next logon, Windows Sandbox will start normally.

Fix: Microsoft Store Error 0x800706D9

This error may also occur while opening Microsoft Store or any of its applications. To solve this, try the following suggestions –

1] Run Store App Troubleshooter

Windows 10 includes a troubleshooter for each one of its services and components. Store App Troubleshooter is one such tool that can locate and repair any bugs related to Windows Store. In case this doesn’t solve the issue, it suggests mending ways to address the issue at hand. Here’s how to use this tool –

  • Press Win+I shortcut to start Windows Settings UI.
  • Click Update & Security thereafter Troubleshoot on the left overlay.
  • Move to the right side and click the “Additional troubleshooter” link.
  • Scroll down to Windows Store apps and click to extend its pane.
  • Hit Run the troubleshooter.

Store Apps Troubleshooter

  • The tool immediately starts detecting and fixing any errors (if it finds any). 

2] Enable Storage Services 

At times, the 0x800706D9 error occurs due to Storage services becoming troublesome. Users often disable storage services so as to avoid Windows writing hidden files on USB devices. The 0x6D9 error might occur due to such restrictions on Windows 10. To get rid of this bug, you need to re-enable the services manually following these easy steps – 

  • Right-click on the Windows icon and choose Run.
  • Type “services.msc” without quotes and hit the OK button.
  • Locate Storage Service on the succeeding window.
  • Double-click the same to launch its Properties window.
  • If the Service status displays “stopped”, click the start button.

0x800706d9 - Restart Storage Services

  • Click Apply then OK to confirm these changes.
  • Restart Windows so that changes made come into effect from the next logon. 

3] Re-register All Store apps

If you are still getting the 0x800706D9 bug, you must re-register each one of the Store apps using PowerShell command. Here are the essential steps to work upon –

  • Right-click on the Start button and choose “Windows PowerShell (Admin)“.
  • When the UAC window comes into view, tap Yes.
  • On the elevated console, copy/paste the below code and hit Enter

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

0x800706d9

  • After this code runs successfully, reboot PC to implement the recent changes. 

Fix: Windows Defender Firewall Error 0x800706d9

If you are getting the error code 0x800706d9 while opening Windows Defender, try these solutions –

Tip: Make sure to uninstall or remove any third-party antivirus program as well to avoid this error. 

1] Disable Microsoft Defender

  • Go and click the “up arrow” available near the notification area and hit the “Shield” icon.
  • Doing so will launch the Microsoft Defender application.
  • Head over to the right pane and click Virus & threat protection.
  • On the succeeding page, tap Manage settings link.

0x800706d9

  • Next, turn off the Real-time protection toggle switch. 
  • When a confirmation window appears, hit the Yes button.

You may now check whether the error 0x800706d9 is still appearing or has disappeared. 

2] Set Windows Firewall to Automatic

As per certain user’s POV, disabling the Firewall/ICS service directly may fix this issue on Windows 10. However, doing so you might not even launch the Windows Firewall wizard. Here’s how to fix this –

  • Make a right-click on the Windows icon and select Run.
  • Type “devmgmt.msc” and press Enter to launch the Device Manager.
  • This time, right-click on the Windows firewall and set it to Automatic.

That’s it, I hope the above tutorial does help to address the error code 0x800706d9 on Windows 10.

Nothing in Windows 10 comes error-free so does Microsoft store. You might encounter certain codes at times that restrict the procedure while attempting to download or install an app. Error 0x800706D9 is one of these and it mostly prompts when something unexpected happens with the Windows Store. There might be some other factors that lead to such unwanted issues like corruption in the system and damaged cache.

Some people also reported that Microsoft Store error 0x800706D9 is more prominent when Storage Service is disabled in their Windows 10 PC. However, fixing the fatal code is not hard at all no matter what the actual reason is. In most cases, a built-in troubleshooter dedicated to the Windows store does the tweak. If not, you might need to enable storage service, reset the store to its default state, or reinstall the app.

Here is how to fix Microsoft Store Error 0x800706D9 in Windows 10 –

1] Run Store App Troubleshooter

Microsoft offers a dedicated troubleshooter for Windows store that works to bypass any problem the app conflicts. Usually, the tool scans the system to find the issues causing 0x800706D9 and fixes them automatically. Even if it fails to do so, the tool will let you know what the problem is and what step you should take next. Steps to run the troubleshooter are as followed –

  1. Press Win+I keyboard shortcut.
  2. When Windows Settings page turns up, click Update & Security.
  3. Opt for Troubleshoot from the left overlay.
  4. Move to the right pane and click the link Additional troubleshooters.
  5. Scroll down and locate Windows Store Apps.
  6. Select the same and click the button Run the troubleshooter from the extended tray.
  7. Let the tool detect and fix any problem related to error 0x800706D9.

2] Enable Storage Service to settle down error 0x800706D9

Oftentimes Storage service becomes troublesome and many of you keep it disabled in order to prevent Windows from writing hidden system files to USB devices. Due to this reason, 0x800706D9 Windows store error may take place. In such a case, what you can do is enabling the service manually and check if this was the real cause behind the code. Here is how to proceed –

  1. Right-click on Start button and choose Run.
  2. Type services.msc in the dialog box and click the OK button.
  3. Locate Storage Service on the Window that appears.
  4. Double-click the same to open its Properties.
  5. Set the Startup type to Automatic.

Set the startup type of Storage Service to Automatic

  1. Click on Start if the service is highlighting the Start button.
  2. Select Apply followed by OK button to save the changes.
  3. Lastly, restart Windows 10.

3] Reset Microsoft Store

As we said earlier, error 0x800706D9 mostly shows up when you try to download and install new software. Corrupted Store Cache is highly responsible for giving rise to such stop codes. Resetting the store cache may help in this kind of issue. To do so –

  1. Open Windows Settings app first.
  2. Click on Apps.
  3. When Apps & features page shows up, move to the adjacent right and scroll down to find out Microsoft Store.
  4. After getting the app, select it.
  5. Click Advanced options link from the expanded pane.
  6. From the next page, move down a bit and click the Reset button.

Error 0x800706D9 - Reset Microsoft store

  1. A popup may appear for final confirmation where you need to click Reset again.

You can also follow the guidelines here – 5 Ways to Reset Microsoft Store in Windows 10.

4] Re-register All Store apps

Microsoft store can’t get deleted automatically or without any valid reason but the same can be damaged by losing its essential components which result in 0x800706D9. To settle it down, you need to re-register the app using PowerShell command. Here are the steps you need to follow –

  1. Press Win+Q, type in PowerShell, and choose the option Run as administrator from right pane.
  2. When a UAC prompts, click Yes button.
  3. Once Administrator: Windows Powershell console rolls out, insert the below command –

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

  1. Hit Enter.
  2. In the end, reboot the system.

5] Uninstall & Reinstall Store to fix error 0x800706D9

If the Windows Store has become corrupted or defective itself, better to uninstall the app and install it again. In this way, you will have a fresh moreover error-free version of store. To proceed forward –

  1. First of all, run PowerShell as administrator.
  2. Once the console becomes ready to execute a command, insert the below line at the base of blinking cursor –

Get-AppxPackage *windowsstore* | Remove-AppxPackage

  1. When the app is uninstalled, reboot the computer.
  2. After powering up, again open Windows PowerShell (Admin).
  3. This time, execute the below command-line –

Get-AppXPackage *WindowsStore* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

6] Run SFC /Scannow

Store error 0x800706D9 may appear on Windows 10 PC due to corrupted system components and missing dll files. Such an incident usually happens because of unexpected power surge, malware attack, and collision of programs. To resolve the corruption at the same time recover missing elements, run system file checker in elevated Command Prompt. For that –

  1. Open Run Dialog box.
  2. Put cmd.exe in the text field and press Ctril+Shift+Enter keys altogether.
  3. When a UAC shows up, click Yes.
  4. Once in the black window, insert the below command followed by hitting Enter key –

Sfc /scanow

  1. Let the tool complete the scanning process without interruption.
  2. After completion, restart the computer and check if error 0x800706D9 has resolved.

7] Disable Antimalware program for a while to resolve error 0x800706D9

Antimalware programs always work to keep you away from vulnerable threats and to do so, often they block some app from downloading that seems suspicious. There is a high chance that Microsoft store has misinterpreted the app you are trying to download or install. As a result, the system fails to get it and throw 0x800706D9 Windows store error. To get rid of it, you can disable the active anti-malware program for a while. Keep in mind that disabling the security program for always can harm the PC badly, so, don’t forget to enable it later.

Disable built-in Windows Security

  1. Press Win+I to bring Settings app.
  2. Continue with Update & Security.
  3. Select Windows Security from the left overlay.
  4. Move to alongside right and opt for the option Virus & threat protection.
  5. From the newly appeared window, click the link says Manage settings located in right pane.
  6. Switch the toggle button of Real-time protection left.

Error 0x800706D9 - Disable Real-time protection temporarily

  1. A pop-up will turn up for final confirmation. Hit the Yes button.

Disable third-party antivirus

  1. Click the up arrow icon from the right side of taskbar to unfold system tray.
  2. Right-click on the antivirus icon installed on your PC.
  3. Choose Disable or anything identical from the appearing context menu.
  4. Now, you might need to choose a time slot that decides how long the antivirus program will remain disabled. Choose what you prefer.

Methods:
1] Run Store App Troubleshooter
2] Enable Storage Service
3] Reset Microsoft Store
4] Re-register All Store apps
5] Uninstall & Reinstall Store
6] Run SFC /Scannow
7] Disable Antimalware program for a while

That’s all!!

Repair any Windows problems such as Blue/Black Screen, DLL, Exe, application, Regisrty error and quickly recover system from issues using Reimage.

Если у Вас при попытке загрузки или установке обновлений в системе, или при активации (либо обновлении системы с «Домашней» версии до Pro) возникает ошибка с кодом — 0x800706d9. Есть несколько вариантов как это исправить.

1) Заходим в меню «Службы», сделать это можно путем вызова горячих клавиш Win + R => В поле ввода введите services.msc => Находите в списке окна «Службы» пункт «Брандмауэр Защитника Windows» => Щелкаем на него дважды и переводим в ручной режим. Далее применить. Помимо всего, рекомендуем отключить антивирус на время обновления, или активации, если он у Вас установлен. Т.к антивирус может блокировать исходящие и входящие соединения с серверами Microsoft.

Теперь можете повторить активацию системы, либо ее обновление.

2) Если Вам нужна активации системы, либо к примеру обновление Windows 10 Домашняя до Windows 10 Pro, при наличии у Вас ключа активации Windows 10 Pro. То Вы можете попробовать активировать альтернативным способом через терминал, по следующей инструкциии.

3) Помимо всего мы рекомендуем использовать только оригинальные дистрибутивы Windows 10. Скачать их можете с сайта Microsoft по инструкции, либо из нашего каталога.

Понравилась статья? Поделить с друзьями:
  • Ошибка 0x800700de сохраняемый или полученный файл заблокирован
  • Ошибка 0x8007251d при активации windows 10
  • Ошибка 0x800706cc эта конечная точка дублирует уже существующую
  • Ошибка 0x800700d при установке windows 10
  • Ошибка 0x8007232b при активации windows 10 домашняя лицензионный