Ошибка 0x8007001f 0x20006 при обновлении windows 10

Во время апдейта до Windows 10 через Media Creation Tool некоторые пользователи могут сталкиваться с ошибкой 0x8007001f – 0x20006. В сообщении ошибки может содержаться следующая информация:

Не удалось установить Windows 10
Компьютер возвращен к тому состоянию, в котором он находился перед началом установки Windows 10.

0x8007001f – 0x20006
Ошибка на этапе установки SAFE_OS во время операции REPLICATE_OC

Во время этапа SAFE_OS запускается установка всех необходимых для операционной системы обновлений, тем не менее в какой-то момент что-то идет не так и Media Creation Tool показывает пользователю ошибку 0x8007001f – 0x20006. Этим «что-то» может являться прерванная загрузка файлов апдейта, проблемы с интернет-подключением и многое другое.

Как избавиться от ошибки 0x8007001f – 0x20006?

0x8007001f – 0x20006

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

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

Нажмите на пункт «Дополнительно» в нижнем левом углу окна и поставьте галочку возле опции «Автоматически применять исправления». Далее нажмите на кнопку «Далее» и следуйте последующим инструкциям на экране.

Решение №2 Сброс компонентов Центра обновления

В некоторых случаях для решения ошибки 0x8007001f – 0x20006 может потребоваться сброс всех компонентов Центра обновления Windows. Благо, уже давно существуют способы автоматизации данного процесса — вам не придется с полчаса сидеть за Командной строкой, вручную прописывая каждую команду.

Предлагаем вам воспользоваться скриптом смышленного пользователя-энтузиаста, способного полностью сбросить все компоненты вашего Центра обновления. Нажмите Win+R, после чего выполните значение notepad.exe. Далее вставьте в окно Блокнота следующий скрипт:

:: 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
:: /*************************************************************************************/

Нажмите на пункт «Файл» в строке меню окна и выберите «Сохранить как…». Задайте файлу имя WUReset.cmd (обязательно выставьте расширение cmd!) и сохраните его в удобное для вас место на ПК, например, на рабочем столе. Создав файл, дважды кликните на него ЛКМ и наблюдайте за сбросом Центра обновления. Как только все закончится, перезагрузите компьютер и проверьте наличие ошибки 0x8007001f – 0x20006.

Решение №3 Отключение брандмауэра и антивируса

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

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

Для деактивации Защитника Windows, необходимо сделать следующее:

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

Запустите обновление до «десятки» еще раз и посмотрите, покажется ли ошибка 0x8007001f – 0x20006.

Решение №4 Чистая загрузка системы

Возможно, какое-то программное обеспечение на вашем компьютере мешает установке Windows 10. Это легко проверить, начисто загрузив свою ОС. Делается это следующим образом:

  • нажмите Win+R;
  • пропишите msconfig и нажмите Enter;
  • перейдите во вкладку «Службы»;
  • поставьте галочку возле опции «Не отображать службы Майкрософт» и нажмите кнопку «Отключить все»;
  • перейдите во вкладку «Автозагрузка»;
  • кликните на ссылку «Открыть диспетчер задач»;
  • деактивируйте всё ПО, которое будет находиться перед вами в списке;
  • перезагрузите компьютер и запустите обновление до Windows 10 еще раз.

Надеемся, что данный материал был полезен для вас в решении ошибки 0x8007001f – 0x20006.

When you use Windows Media Creation tool to update your computer, you might receive error code 0x8007001F — 0x20006. Focusing on this problem, MiniTool software provides 5 feasible solutions in this post.

The Windows Media Creation tool developed by Microsoft is a rather useful tool to help you download and install the latest Windows version. However, when you use this tool, you might get 0x8007001F – 0x20006 error during the setup process. Also, there is an error message:

The installation failed in the SAFE_OS phase with an error during REPLICATE_OC operation.

The safe OS phase, pointed in the error message, is an important phase to install all the required Windows updates. If your Windows 10 update keeps failing with this error message, perhaps the update download is interrupted or there’s something wrong with your internet connection. Of course, some other factors might also lead to this issue.

How to fix Windows 10 update error 0x8007001F – 0x20006? Several workarounds are listed here and you can try them one by one to fix this error.

Fix 1: Use Windows Update Troubleshooter

If you run into certain problems with Windows update, the easiest solution is to use Windows Update Troubleshooter which is a built-in tool in your Windows 10. You can follow the steps listed below:

Step 1: Press Windows + R to open Settings app.

Step 2: Go to Update & Security > Troubleshoot.

Step 3: In the right pane, select Windows Update and click Run the troubleshooter.

run Windows Update troubleshooter

Then, this tool will start detecting problems that prevent you from updating Windows. Once it’s done, you can check if Windows update error 0x8007001F – 0x20006 is fixed.

Fix 2: Reset Windows Update Components

Alternatively, you can try resetting the Windows Update components to fix the issue. Just refer to the following steps.

Step 1: Press Windows + R to invoke Run window. Input cmd and press Ctrl + Shift + Enter to run Command Prompt with administrative privilege.

Step 2: Type the following command and hit Enter key after each to stop the Windows Update components, including Windows Update service, Cryptographic service, BITS and MSI Installer.

  • net stop wuauserv
  • net stop cryptsvc
  • net stop bits
  • net stop msiserver

Step 3: Now, you need to rename SoftwareDistribution and Catroot2 folders. Just type the following command line and press Enter after each.

  • ren C:WindowsSoftwareDistribution SoftwareDistribution.old
  • ren C:WindowsSystem32catroot2 Catroot2.old

Step 4: After rename the folders, you need to restart the involved components mentioned above. Just enter the following command. Again, do not forget to press Enter after each command.

  • net start wuauserv
  • net start cryptsvc
  • net start bits
  • net start msiserver

Once you have reset the Windows update components, exit Command Prompt and restart your computer. You can try updating your Windows again to check if 0x8007001F – 0x20006 error is resolved.

Fix 3: Clear Windows Update Cache

Sometimes, the cached Windows Update files might be corrupted or incomplete, which could prevent Windows update from installing and cause 0x8007001F – 0x20006 error. In this case, you need to clear your Windows update cache, and try downloading and installing updates again.

To do that, you just need to delete $Windows.~BT and $Windows.~WS folders in File Explorer. They are created by your system and hidden in the system drive. To see them, you can go to View tab and choose Show hidden files.

clear Windows Update cache

Fix 4: Disable Your Antivirus and Firewall Temporarily

Your installed antivirus and Windows Defender Firewall might interfere with your network connection required by Windows Update. So, it is also a good choice to disable your antivirus firewall temporarily if you receive Windows 10 update error 0x8007001F – 0x20006.

You can disable firewall in Control Panel. Go to System and Security > Windows Defender Firewall and choose Turn Windows Defender Firewall on or off in the left pane. When you get the following interface, check Turn off Windows Defender Firewall for both private and public network settings and click OK to save changes.

turn off Windows Defender Firewall

Fix 5: Run Windows Updates in Clean Boot State

It is also possible that a certain third-party application or service on your computer is interfering with Windows Update. Instead of spending much time figuring out the culprit, you can clean boot your computer and try updating your Windows again. Here is a simple guide for you.

Step 1: Make sure you log on to your PC with administrative account. Type msconfig in Run dialog and click OK to open System Configuration.

Step 2: Under General tab, choose Selective startup. Uncheck Load startup items, and make sure Load system services and Use original boot configuration are selected.

uncheck Load startup items

Step 3: Under Services tab, check Hide all Microsoft services, click Disable all, and click Apply/OK to save changes you have made.

disable third-party services

After that, restart your computer to put it into a Clean Boot State. Now, you should be able to run Windows Update again without any problems.

Note: To configure a usual startup, just undo the changes you made before.

0x8007001f – 0x20006 is an error that may appear when you try to update your PC. In fact, it appears when you try to update your PC through Windows Media Creation.

Well, if you are frustrated about it and looking for a solution, keep reading.

0x8007001f – 0x20006 Error

Windows Media Creation tool is a very handy tool developed by Microsoft. The purpose of this tool is to download & install the most recent version of Windows on your PC.

Although this tool works perfectly in most cases, it might give you some errors once in a while. When it displays the error message, it will contain the code 0x8007001f. To be precise, it will appear as below.

“The installation failed in the SAFE_OS phase with an error during REPLICATE_OC operation”.

0x8007001f - 0x20006 Error

You will notice that there is a safe OS phase pointed out in the error message. Basically, that is a pretty important phase that should be installed in your system. That said, if you continue to see this 0x8007001f error, that will hinder your computer’s performance.

So, it is compulsory to download this specific update to try all the potential solutions. It is true that this error can occur mainly due to a faulty internet connection. However, that’s not the only issue. Instead, 0x8007001f – 0x20006 error can trigger due to several other reasons.

So, let’s learn more about how to fix the 0x8007001f – 0x20006 error in your Windows system. The good news is that there are several ways to fix this issue without necessarily worrying or panicking.

Let’s explain these solutions to you. So, go ahead and read how to fix the 0x8007001f error.


Solution 1: Fix 0x8007001f using Windows Update Troubleshooter

Here is the first solution if you have encountered some issues due to Windows update errors. The easiest and most basic fix is using the Windows Update Troubleshooter option.

In fact, it is a built-in tool that is included in Windows 10 system. If you are not aware of that, you can simply follow below steps that are mentioned below.

  • To open the Settings app, press Windows + R on your keyboard.
  • Now, you should choose Update & Security and go to Troubleshoot from the menu bar.
  • As the next step, choose the option “Windows Update,” located in the right-pane drop-down menu. Then, you should click “Run the troubleshooter.”
Fix 0x8007001f - 0x20006 Error  using Windows Update Troubleshooter

Now, this software will begin identifying issues that are preventing you from updating Windows. After this process, error 0x8007001f – 0x20006 will be solved for good.

PS: if you come across Windows Update Error 0x80070020, here are the top solutions for you.


Solution 2: Fix 0x8007001f by Resetting Windows Update Components

If the previous solution didn’t work, you should try resetting the Windows Update components and fix the 0x8007001f error. Please follow the steps mentioned below.

  • First, to open the Run window, press Windows + R on your keyboard.
  • After that, you should launch Command Prompt with administrative privileges. You can enter cmd in the search box and press Ctrl + Shift + Enter to do that.
  • Then, the following commands should be entered one at a time on the CMD interface.
net stop wuauserv
net stop cryptsvc
net stop bits
net stop msiserver

Just press the Enter key after each line. That will stop the Windows Update components. That comprises the following elements:

  • Windows Update service
  • Cryptographic service
  • BITS service
  • MSI Installer
  • Now, rename the SoftwareDistribution & Catroot2 folders to something more meaningful. Simply type the following command line and hit Enter after each character.
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 Catroot2.old
  • After you have renamed the folders, you should rename those components that were previously mentioned. To do that, enter the following command into your computer. Make sure that you hit after each command, as you did the first time.
net start wuauserv
net start cryptsvc
net start bits
net start msiserver
  • Now, restart the PC & see if the 0x8007001f – 0x20006 error is gone.

There are times when Microsoft’s cached Windows Update files become corrupted or insufficient for some reason or another.

Such a specific scenario will prevent Windows Update from installing and eventually cause a 0x8007001f – 0x20006 error. So, in this case, it is compulsory to clear the Windows update cache and then retry the process.

To make it happen, you simply need to delete the $Windows.~BT and $Windows.~WS  folders. You can navigate to those files from the File Explorer window. These files are created by the system itself.

They are stored in the system drive in the form of hidden files, so they aren’t directly visible. Please go to the View tab & select Show hidden files from the drop-down menu to see them.

Clear the cache related to Windows Update  to fix 0x8007001f - 0x20006 Error

Besides, if you are facing your computer’s low memory issue, this guide you must check out.


Solution 4: Temporarily Disable the Antivirus and Firewall Installed in Your System

Do you have antivirus software and Windows Defender Firewall installed in your system like many other users? If so, it is possible that they will interfere with your network connection.

As a result, it can prevent smooth Windows updates, and that will cause a 0x8007001f error. Therefore, if you encounter the 0x8007001f error, it is a good idea to temporarily disable your antivirus firewall.

It is possible to disable the firewall through the Control Panel. To do that, you can turn Windows Defender Firewall on or off. That can be done by selecting Turn Windows Defender Firewall on/off.

You can find it in the left pane of the Windows Explorer window. So, select Turn off Windows Defender Firewall for both private and public network settings. After that, click OK.

Temporarily disable the antivirus and firewall installed in your system

Solution 5: Update Windows in Clean Boot State

Apart from that, even a third app or service running on your PC can interfere with Windows Update.

So, without spending a significant amount of time identifying the source of the problem, let’s try a clean boot. That will help you update Windows again.

  • Be sure that you are logged into the computer with administrative privileges. Then, to open System Configuration, you should enter MSConfig into the Run dialog box, and then please click OK.
  • Now, Choose the “Selective startup” located in the General drop-down menu. You can uncheck the box labeled “Load startup items.” Then, check “load system services” & “Use original boot configuration.”
Update Windows in Clean Boot State  to fix 0x8007001f - 0x20006 Error
  • Now, in the tab labeled “Services,” you should choose “Hide all Microsoft services.” Then, click Disable all. As the final step, select Apply/OK so you can save the changes.
Hide all Microsoft services
  • Perform a system restart, and now it will load in Clean Boot State. You can load Windows updates without any issues. That means the 0x8007001f issue will be gone.

Solution 6: Check SFC and DISM

  • To open the Windows menu, press the Windows Key and X key simultaneously
  • After that, select Command Prompt (Administrator) from the drop-down menu.
  • If you cannot access Command Prompt, you can also use PowerShell (Admin) to complete the same task.
  • On the command prompt, enter the command sfc /scannow.
sfc /scannow
  • Now, you will see that the SFC scan is commencing. It is important to let the scan go on undisturbed. It will take around 15 minutes.

Some files on your system can get corrupted or missing due to various reasons. In that case, you can use a DISM to overcome it. DISM stands for Deployment Image Servicing and Management.

  • Run command prompt with administrator privileges.
  • Enter the command DISM.exe /Online /Cleanup-image /Restorehealth
DISM.exe /Online /Cleanup-image /Restorehealth
  • You can even use USB storage or a DVD if there’s a connection issue related to updates. Insert that media and enter the following command.
  • “DISM.exe /Online /Cleanup-Image /RestoreHealth /Source:C:Your Repair SourceWindows /LimitAccess”
  • Replace the repair source using its own source path.

Solution 7: Reinstall the audio drivers in your system

Interestingly, some users have overcome this issue by reinstalling audio drivers. So, if you experience 0x8007001f – 0x20006 error, you may try this solution as well.

  • Press Windows Key + X so you can see the Windows menu. Choose “Device Manager.”
  • Go to “Sound, video, and game controllers.” Then, please right-click on the option called audio device.
  • Now, you can choose “Uninstall Device.”
Uninstall device
  • You can check the option labeled “Remove driver software for this device” to proceed.
  • Then, select “Uninstall.”
Reinstall the audio drivers in your system  to fix 0x8007001f  error
  • After that, download the most up-to-date driver from the official website.
  • Restart the computer and see if the 0x8007001f error persists.

FAQs

FAQ 1: What is the 0x8007001f – 0x20006 Update Error?

The 0x8007001f – 0x20006 error is an update error that occurs on Windows systems when the update process fails to install or configure certain system components. It can be resolved by following the troubleshooting steps mentioned in this article.

FAQ 2: How can I fix the update error on Windows?

To fix the 0x8007001f – 0x20006 update error on Windows, you can try running the Windows Update troubleshooter, restarting update services, disabling third-party antivirus software, performing a clean boot, or resetting Windows Update components. Follow the step-by-step instructions provided in this article for detailed guidance.

FAQ 3: Why does the error occur during Windows updates?

The 0x8007001f – 0x20006 update error can occur due to various reasons, such as network connection issues, software conflicts, corrupted system files, or incompatible hardware drivers. Identifying and resolving these underlying causes can help fix the error.

FAQ 4: Can third-party antivirus software cause update errors?

Yes, third-party antivirus software can sometimes interfere with the Windows update process and cause errors. Temporarily disabling the antivirus software can help identify if it’s the cause of the 0x8007001f – 0x20006 error.

FAQ 5: What should I do if none of the troubleshooting steps work?

If none of the troubleshooting steps mentioned in this article fix the 0x8007001f – 0x20006 update error, it’s recommended to seek further assistance from Microsoft support or consult with a professional technician who can provide specialized help in resolving Windows update issues.

Conclusion

We hope that the above solutions will fix the 0x8007001f – 0x20006 error on your PC. For other questions related to this matter, please let us know.

10.04.2021

Просмотров: 4116

Ошибка 0x8007001f-0x20006 на Windows 10 чаще всего возникает при попытке обновить систему через штатную утилиту Microsoft. Однако бывают случаи, когда обновление невозможно загрузить по причине сбоев в работе Центра обновления системы и службы, обеспечивающих работу данного компонента. Поэтому, если у вас возникла ошибка 0x8007001f, то решить её можно следующим образом.

Читайте также: Ошибка обновления 8024402c на компьютере с Windows 7

Как исправить ошибку 0x8007001f-0x20006 на Windows 10?

Если у вас возникла ошибка 0x20006 при обновлении Windows 10, тогда стоит в первую очередь остановить службы, отвечающие за работу Центра обновления. Для этого нужно открыть консоль Power Shell с правами Администратора и по очереди ввести такие команды:

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

net start wuauserv

net start cryptSvc

net start bits

net start msiserver

Теперь, не перезагружая ПК, нужно открыть строку Выполнить, нажав комбинацию Win+R и прописать %systemroot%\Logs\CBS.

Появится новое окно с системной папкой Logs. В ней находим файл CBS.log. Нажимаем на нем правой кнопкой мыши и выбираем Переименовать. Можно задать файлу имя CBSold.log. После переименования файла нужно перезапустить ПК.

ВАЖНО! Если файл CBS.log не удается переименовать, то нужно нажать Win+R, ввести services.msc и найти службу Установщик модулей Windows. Задаем для этой службы тип запуска Вручную и перезапускаем ПК. Повторяем попытку переименования файла CBS.log.

Теперь, когда службы перезапущены, нужно перейти на официальный сайт Майкрософт и скачать утилиту Update Assistant. Нужно нажать на кнопку «Обновить сейчас» и установить необходимые обновления для Windows 10.

После выполнения данных действий ошибка 0x8007001f-0x20006 появляться не будет, а система получит последний апдейт.

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

Операционная система Windows может выдать такое сообщение, например, после неудачной попытки установки обновлений в Windows 10. Когда я попробовал обновить ОС Windows 7 до Windows 10 система сообщила, что она откатывается назад… После перезагрузки компьютера и входа в учётную запись, выскочило окно, в котором отображался злосчастный код и дополнительная информация:

0x8007001F 0x20006 Failed in the Safe_OS Phase with an error during Replicate_OC operation

​​​​​​​Причина может заключаться в нестабильной работе сетевого адаптера/сбоях при подключении к сети (часто), в тяжёлом и надоедливом антивирусе, некотором ПО (например КриптоПро)… К сожалению, в списке часто встречающихся ошибок при обновлении Windows на сайте Microsoft нет информации о 0x8007001F 0x20006. Так что же нужно делать?

Если вы точно не знаете в чём причина или просто лень разбираться, то можно выполнить следующее:

1. Установите последние обновления для Windows 7. Это можно сделать через Центр обновлений Windows или с помощью PowerShell, используя модуль PSWindowsUpdate. Выбирайте на свой вкус. Если имеются какие-либо иные ошибки в центре Центр обновлений, то рекомендуется с ними разобраться. Например, можно использовать встроенный в Windows Troubleshooter обновлений.

2. Убедитесь, что в системе нет неопознанных устройств или повреждённых драйверов. Откройте диспетчер устройств: WIN+R —> devmgmt.msc —> Enter. Если есть проблемы, то диспетчер сообщит вам об этом: на значке устройства будет отображаться жёлтый восклицательный знак. В таком случае удалите драйвер и установите новый, скачав его с сайта производителя. Также на момент обновления системы лучше отключить всю периферию.

2.1. Обновите драйверы для всех устройств.

3. Отключите антивирус и Firewall.

4. Старые системные файлы (обновления), которые во время не очищаются самой ОС могут быть причиной. Поэтому для начала можно очистить кэш Центра обновлений. Удалите скрытые папки $ Windows. ~ BT & $ Windows. ~ WS. Далее остановите службу Windows Update командой net stop wuauserv , а затем перейдите в C:\Windows\SoftwareDistribution\Download и удалите все файлы в этой папке.  Безболезненно этим можно заняться и в DataStore\Logs.

5. Проверьте целостность системных файлов. Запустите CMD от имени администратора и введите команду sfc /scannow. Если система обнаружила повреждённые файлы и не смогла их восстановить, то возможно инструкция от Microsoft сможет помочь вам.

6. Проверьте диск командой chkdsk C: /f /r. Параметр /f попытается исправить, если будут найдёны ошибки.

7. Выполните чистую загрузку ОС Windows 7. Для этого выполните следующее:

— запустите msconfig с правами администратора
​​​​​​​- установите настройки во вкладе «Общие» как на картинке ниже:

— перейдите на вкладку «Службы» и выставите следующие настройки; нажмите кнопку «Отключить все».

Таким образом будут работать самые необходимые для системы службы, а не обязательные программы, процессы, службы не запустятся. Для усиления «эффекта» можно отключить ещё драйверы устройств, оставив нетронутыми только драйверы для сетевой карты. Перезагрузите компьютер, система запустится в чистом режиме. Выполняйте обновление.

8. Ремонтная установка Windows 7 (Repair Install). Она позволяет переустановить систему, оставив программы и директорию пользователя на своих местах. Если вы не пользуетесь OEM лицензией, то можете попробовать выполнить ремонтную установку. Скорее всего впоследствии вам удастся обновить систему до Windows 10.

9* Что помогло мне… Recovery Factory… В моём случае сложность заключалась ещё в том, что использовалась OEM лицензия. Выполнять ремонтную установку было очень опасно, всегда может что-то пойти не так, тем более нет чёткой информации как это правильно сделать. Сбросить систему до заводских настроек очень просто. Достаточно скачать средство (утилиту) с сайта изготовителя вашего ноутбука, и выполнить рекомендации мастера создания загрузочного носителя с образом операционной системы.

Понравилась статья? Поделить с друзьями:
  • Ошибка 0x8007000d недопустимые данные swbemobjectex при активации
  • Ошибка 0x80070017 ошибка данных crc
  • Ошибка 0x80070015 windows 10 как исправить
  • Ошибка 0x8007000d недопустимые данные mp3
  • Ошибка 0x80070005 windows 10 x64 как исправить