Как исправить ошибку 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?
    • Решение №1 Запуск средства устранения неполадок
    • Решение №2 Сброс компонентов Центра обновления
    • Решение №3 Отключение брандмауэра и антивируса
    • Решение №4 Чистая загрузка системы

Как избавиться от ошибки 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 DataMicrosoftNetworkDownloaderqmgr*.dat»
del /s /q /f «%ALLUSERSPROFILE%MicrosoftNetworkDownloaderqmgr*.dat»

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

cd /d %SYSTEMROOT%

if exist «%SYSTEMROOT%winsxspending.xml.bak» (
del /s /q /f «%SYSTEMROOT%winsxspending.xml.bak»
)
if exist «%SYSTEMROOT%SoftwareDistribution.bak» (
rmdir /s /q «%SYSTEMROOT%SoftwareDistribution.bak»
)
if exist «%SYSTEMROOT%system32Catroot2.bak» (
rmdir /s /q «%SYSTEMROOT%system32Catroot2.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%winsxspending.xml» (
takeown /f «%SYSTEMROOT%winsxspending.xml»
attrib -r -s -h /s /d «%SYSTEMROOT%winsxspending.xml»
ren «%SYSTEMROOT%winsxspending.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%system32Catroot2» (
attrib -r -s -h /s /d «%SYSTEMROOT%system32Catroot2»
ren «%SYSTEMROOT%system32Catroot2» 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.

10.04.2021

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

Ошибка 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:WindowsSoftwareDistribution SoftwareDistribution.old

Ren C:WindowsSystem32catroot2 Catroot2.old

net start wuauserv

net start cryptSvc

net start bits

net start msiserver

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

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

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

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

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

Содержание

  1. Как исправить ошибку 0x8007001f 0x20006 при обновлении до windows 10
  2. Вариант 1. Попробуйте сбросить компоненты Центра обновления Windows.
  3. Вариант 2. Попробуйте удалить кэш Центра обновления Windows.
  4. Вариант 3. Попробуйте временно отключить антивирус и брандмауэр Защитника Windows.
  5. Вариант 4. Запустите Центр обновления Windows в состоянии чистой загрузки.
  6. Вариант 5. Запустите средство устранения неполадок Центра обновления Windows.
  7. Ошибки при обновлении Windows 10: причины появления и устранение неполадок по коду
  8. Бесконечное обновление Windows 10: что с этим делать
  9. Как устранить зацикливание обновления
  10. Решение проблемы с помощью входа в учётную запись
  11. Решение проблемы с помощью другого устройства
  12. Как устранить прерывание обновления
  13. Исправление ошибок в «Центре обновления Windows»
  14. Устранение ошибок с помощью утилиты от Microsoft
  15. Видео: как исправить проблему бесконечного обновления Windows 10
  16. Ошибки обновления Windows 10 и их решения по коду
  17. Таблица: коды ошибок обновления и их решения
  18. Видео: как устранить ошибки при обновлении Windows 10
  19. При обновлении Windows 10 появляется ошибка 0x8007001f-0x20006
  20. Как исправить ошибку 0x8007001f-0x20006 на Windows 10?
  21. Как исправить ошибку 0x8007001f 0x20006 при обновлении до windows 10
  22. Option 1 – Try to reset the Windows Update components
  23. Option 2 – Try to delete the Windows Update Cache
  24. Option 3 – Try to temporarily disable anti-virus and Windows Defender Firewall
  25. Option 4 – Run the Windows Update in a Clean Boot State
  26. Option 5 – Run the Windows Update Troubleshooter
  27. [FIX] Обновление Windows 10 не работает — ‘0x8007001f — 0x20006’
  28. Метод 1. Обновите Windows вручную
  29. Метод 2: выполните восстановительную установку Windows 10

Как исправить ошибку 0x8007001f 0x20006 при обновлении до windows 10

«0x8007001F-0x20006, установка не удалась в фазе SAFE_OS с ошибкой во время операции REPLICATE_OC».

Ошибка указала на «фазу безопасной ОС». Это этап, который инициируется для установки всех необходимых обновлений Windows. Таким образом, возможная причина этой ошибки может быть связана с прерванной загрузкой, подключением к Интернету и многим другим. Хотя эта ошибка может быть вызвана множеством факторов, исправить ее не должно быть так сложно. Вы можете попробовать сбросить компоненты Центра обновления Windows или удалить кеш Центра обновления Windows. Вы также можете временно отключить брандмауэр и антивирусную программу или запустить Центр обновления Windows в состоянии чистой загрузки, а также запустить средство устранения неполадок Центра обновления Windows. Чтобы приступить к устранению ошибки, следуйте каждому из предложений, приведенных ниже.

Вариант 1. Попробуйте сбросить компоненты Центра обновления Windows.

Примечание: Введенные вами команды остановят компоненты Центра обновления Windows, такие как служба Центра обновления Windows, Криптографические службы, BITS и установщик MSI.

Вариант 2. Попробуйте удалить кэш Центра обновления Windows.

Вы также можете удалить кеш Центра обновления Windows, поскольку в некоторых случаях существующие поврежденные или неполные файлы Центра обновления Windows могут вызвать проблемы при загрузке и установке обновлений Windows. Для этого просто удалите на своем компьютере папки «$ Windows.

WS». Как только вы закончите, попробуйте снова запустить Центр обновления Windows и посмотрите, исправлена ​​ли ошибка.

Вариант 3. Попробуйте временно отключить антивирус и брандмауэр Защитника Windows.

Вариант 4. Запустите Центр обновления Windows в состоянии чистой загрузки.

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

Примечание: Если вы можете установить приложение без каких-либо проблем, это означает, что ошибка вызвана каким-то сторонним приложением на вашем компьютере. Вам нужно найти виновника и удалить его, как только вы его нашли.

Вариант 5. Запустите средство устранения неполадок Центра обновления Windows.

Выполните полное сканирование системы, используя Ресторо. Для этого следуйте приведенным ниже инструкциям.

Источник

oshibka obnovleniya 2

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

Бесконечное обновление Windows 10: что с этим делать

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

Проблема с обновлением ОС Windows 10 может протекать двумя путями:

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

Как устранить зацикливание обновления

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

kod oshibki obnovleniya dlya vindovs 10 skrinshot

Система оповещает о возникшей проблеме и указывает код ошибки, по которому можно выявить причину сбоя

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

Ещё один неприятный нюанс зацикливания обновления заключается в том, что из-за бесконечной перезагрузки устройства пользователь не может войти в учётную запись и внести какие-либо правки в настройки системы.

Поэтому существует два пути решения данной проблемы:

Решение проблемы с помощью входа в учётную запись

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

papka profilelist

Из папки ProfileList удалите учётные записи, которые больше не используются

Перед удалением учётных записей необходимо произвести экспорт папки ProfileList. Это действие поможет вам восстановить активную учётную запись, если она случайно будет удалена.

Решение проблемы с помощью другого устройства

Такой вариант реанимации устройства используется, если его владелец не может войти в Windows. Также он подойдёт, если первый способ не дал результатов. Вам потребуется другое устройство с возможностью выхода в интернет и флеш-накопитель объёмом не меньше 4 ГБ. Устранение ошибки будет произведено путём создания установочного носителя с Windows 10. Для этого нужно:

При использовании этого алгоритма все данные на проблемном компьютере сохранятся.

Как устранить прерывание обновления

Процесс обновления системы иногда буксует и прерывается на одном из этапов. Это видно в процентах, которые указаны при обрывании установки. Как правило, это 30%, 42% либо 99%. Но также может быть 25, 32, 44 или 84%.

Не следует паниковать, если процент обновления некоторое время не меняет показатели. Процесс обновления довольно долгий и иногда может длиться до 12 часов. Также надо учитывать возможности устройства и его производительность. В любом случае необходимо дать компьютеру некоторое время, чтобы он всё-таки смог произвести обновление.

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

Если эти действия не помогли и компьютер не изменяет показатели или завис, то причина этого может быть в неисправности в «Центре обновления Windows».

beskonechnoe obnovlenie vindovs10

Если процентные показатели обновления не меняются длительное время, возможны проблемы в «Центре обновления Windows»

Исправление ошибок в «Центре обновления Windows»

Часто бывает, что «Центр обновления» из-за неосторожного обращения пользователя или из-за вирусов может быть повреждён. Чтобы восстановить прежнюю деятельность системы необязательно переустанавливать ОС. Просто нужно восстановить систему, перезапустив устройство. Но перед этим стоит почистить систему следующим образом:

Устранение ошибок с помощью утилиты от Microsoft

Для подключения утилиты необходимо пройти путь: «Панель управления» — «Устранение неполадок» (или «Поиск и исправление проблем») — «Система и безопасность» — «Устранение неполадок с помощью Центра обновления Windows». Дальше программа произведёт поиск возможных проблем. Некоторые исправления, возникшие при обновлении, будут решены в автоматическом режиме, для других потребуется подтверждение пользователем. После завершения проверки на дисплее появится отчёт о найденных проблемах, об исправлениях и, если такие будут, о проблемах, которые не удалось решить. После этой операции нужно перезагрузить устройство и проверить, обновляется ли система или ситуация не изменилась.

Иногда неисправности возникают из-за проблемы скачивания обновления. Поэтому нелишним будет запустить «Фоновую интеллектуальную службу передачи BITS», которая отвечает за правильность скачивания обновлений. Найти её можно в папке «Устранение неполадок» во вкладке «Все категории».

Видео: как исправить проблему бесконечного обновления Windows 10

Ошибки обновления Windows 10 и их решения по коду

Если все вышеуказанные способы испробованы, а проблема никак не устраняется, нужно искать её решение по коду неисправности.

Таблица: коды ошибок обновления и их решения

В результате этой процедуры может быть утеряна некоторая информация. Для сохранности данных нужно скопировать всю необходимую информацию на флешку или внешний жёсткий диск.

После ввода каждой команды нажимать Enter.

Если процедура прошла успешно можно снова выбрать автообновление.

После ввода каждой команды нужно подтверждать действие нажатием Enter.

Видео: как устранить ошибки при обновлении Windows 10

От обновления Windows 10 зависит правильная работа устройства, поэтому его обязательно нужно проводить. Если во время этого процесса возникают ошибки, не стоит их игнорировать. Лучше как можно быстрее постарайтесь разобраться, как их исправить. Тем более сложного в этом ничего нет: нужно всего лишь узнать код ошибки, выяснить её причину и устранить, следуя определённому алгоритму.

Источник

При обновлении Windows 10 появляется ошибка 0x8007001f-0x20006

9194f081 309b 487f b21e

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

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

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

net stop msiserver

Ren C:WindowsSoftwareDistribution SoftwareDistribution.old

Ren C:WindowsSystem32catroot2 Catroot2.old

net start wuauserv

net start cryptSvc

net start msiserver

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

a1b00828 c496 4be3 ac28 22d365ddd7d0 760x0 resize w

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

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

a0f95230 9b67 4f36 9dda 2f3c8177a423 760x0 resize w

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

b2f9693f 546f 4261 82ce 3f1a4979e252 760x0 resize w

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

Источник

Как исправить ошибку 0x8007001f 0x20006 при обновлении до windows 10

As you know, Microsoft’s Windows Media Creation Tool is a useful tool that helps you download and install the latest version of the Windows 10 operating system. However, there are times when it could encounter some problems during the update process. One of these programs is the following error message:

“0x8007001F-0x20006, The installation failed in the SAFE_OS phase with an error during REPLICATE_OC operation.”

The error pointed out the “Safe OS phase”. It is the phase that’s initiated to install all the required Windows Updates. Thus, the possible cause for this error could have something to do with an interrupted download, internet connection, and many more. Although this error could be caused by a lot of factors, fixing it shouldn’t be that hard. You can try to reset the Windows Update Components or delete the Windows Update cache. You could also disable both the Firewall and your antivirus program temporarily or run the Windows Update in a Clean Boot state, as well as run the Windows Update troubleshooter. To get started troubleshooting the error, follow each one of the suggestions provided below.

Option 1 – Try to reset the Windows Update components

Resetting the Windows Update components could help you resolve the Windows Update error 0x8007001f – 0x20006. How? Refer to the following steps:

Note: The commands you entered will stop the Windows Update components such as Windows Update service, Cryptographic services, BITS, and MSI Installer.

Option 2 – Try to delete the Windows Update Cache

You might also want to delete the Windows Update cache since there are times when existing corrupt or incomplete Windows Update files can cause some problems in downloading and installing Windows Updates. To achieve this, simply delete the “$Windows.

WS” folders in your computer. Once you’re done, try to run Windows Update again and see if the error is now fixed.

Option 3 – Try to temporarily disable anti-virus and Windows Defender Firewall

As mentioned, the error could be due to the antivirus program or the Windows Defender Firewall installed on your computer. Thus, disabling them or any security software installed in your computer is always a good idea you can try when you’re not able to access the shared drive on your computer. There are times when you encounter problems like error 0x8007001f – 0x20006 due to interference of antivirus or security programs. Thus, you have to disable both your antivirus program and Windows Defender Firewall for the meantime and check if it fixes the error or not

Option 4 – Run the Windows Update in a Clean Boot State

It is possible that some third-party application is the one that’s causing the problem so it’s best if you put your computer in a Clean Boot state. During this state, you can start the system with a minimum number of drivers and startup programs that will surely help you in isolating the root cause of the issue.

Note: If you are able to install the app without any trouble at all then it means that the error is caused by some third-party application on your computer. You need to look for the culprit and uninstall it once you found it.

Option 5 – Run the Windows Update Troubleshooter

You might also want to run the Windows Update Troubleshooter as it could also help in fixing error 0x8007001f – 0x20006. To run it, go to Settings and then select Troubleshoot from the options. From there, click on Windows Update and then click the “Run the troubleshooter” button. After that, follow the next on-screen instructions and you should be good to go.

Congratulations, you have just fixed the 0x8007001f – 0x20006 error in Windows 10 all by yourself. If you would like to read more helpful articles and tips about various software and hardware visit errortools.com daily.

Now that’s how you fix the 0x8007001f – 0x20006 error in Windows 10 on a computer. On the other hand, if your computer is going through some system-related issues that have to get fixed, there is a one-click solution known as Restoro you could check out to resolve them.

This program is a useful tool that could repair corrupted registries and optimize your PC’s overall performance. Aside from that, it also cleans out your computer for any junk or corrupted files that help you eliminate any unwanted files from your system. This is basically a solution that’s within your grasp with just a click. It’s easy to use as it is user-friendly. For a complete set of instructions in downloading and using it, refer to the steps below

Perform a full system scan using Restoro. To do so, follow the instructions below.

Источник

[FIX] Обновление Windows 10 не работает — ‘0x8007001f — 0x20006’

Эта ошибка возникает, когда пользователи пытаются обновить свою операционную систему Windows. Это системная ошибка, вызванная повреждением системного файла. Это может привести к другим проблемам, например к невозможности обновления Windows или другим системным приложениям, которые могут не обновляться. Это также может привести к прекращению работы сторонних программных приложений, установленных в вашей системе.

Windows update failed error

Важно постоянно обновлять Windows, потому что, если вы пропустите обновления безопасности, вы сделаете свою систему уязвимой для кибератак, вирусов и вредоносных программ. Даже если обновление не устраняет уязвимость системы безопасности, оно по-прежнему повышает общую стабильность компьютерной системы, а также устанавливает новейшие функции, предлагаемые операционной системой Windows, а также исправляет уже установленное программное обеспечение.

Метод 1. Обновите Windows вручную

В этом методе мы попытаемся обновить операционную систему Windows через командную строку, также известную как Power Shell. Windows Power Shell предлагает больший контроль над операционной системой и позволяет пользователю выполнять задачи, которые иначе невозможно выполнить в собственной графической среде.

Метод 2: выполните восстановительную установку Windows 10

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

Источник

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:WindowsSoftwareDistribution SoftwareDistribution.old
ren C:WindowsSystem32catroot2 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.

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.

This website uses cookies to ensure you get the best experience on our website

Понравилась статья? Поделить с друзьями:
  • Как найти проект на gitlab
  • Как составить диету ребенку 2 лет
  • Как найти кисть в ибис пэинт
  • Как найти парану на карте
  • Очень пугливая кошка как исправить