Во время апдейта до 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 Запуск средства устранения неполадок
Первым делом вы должны попробовать запустить средство устранения неполадок с Центром обновления и посмотреть, получится ли у него устранить вашу проблему. Перейдите по следующей ссылке для загрузки файла 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 bitscall :print Starting the Windows Update services.
net start wuauservcall :print Starting the Windows Update services.
net start appidsvccall :print Starting the Windows Update services.
net start cryptsvccall :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.
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.
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.
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.
Step 3: Under Services tab, check Hide all Microsoft services, click Disable all, and click Apply/OK to save changes you have made.
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
Просмотров: 4302
Ошибка 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 появляться не будет, а система получит последний апдейт.
Microsoft регулярно выпускает новые обновления для Windows 10. Можно с уверенностью сказать, что некоторые поставки не самые гладкие.
Ошибка 0x8007001F – одна из наиболее распространенных ошибок, с которыми пользователи Windows сталкиваются при обновлении. Для этого есть несколько причин: неисправный аудиодрайвер, поврежденные системные файлы, проблемы совместимости или просто некорректно загруженное обновление Windows.
Обычно ошибка разрешается сама собой после простой перезагрузки, но, возможно, стоит попробовать эти изящные исправления, если это не сработает.
Самый простой способ автоматически устранить эту ошибку – использовать средство устранения неполадок Центра обновления Windows. Эта встроенная утилита проверяет общие ошибки в процессе обновления и исправляет их. Вот как это можно использовать:
- Нажмите кнопку « Пуск» и перейдите в « Настройки» .
- В меню «Настройки» нажмите « Обновление и безопасность» .
- На панели навигации слева нажмите Устранение неполадок .
- В разделе » Начало работы» нажмите » Центр обновления Windows» .
- Подождите, пока средство устранения неполадок обнаружит и устранит проблемы, затем перезагрузите компьютер.
Кроме того, вы также можете проверить некоторые способы борьбы с медленной системой после обновления Windows.
2. Отключите антивирусные приложения.
Популярные антивирусные программы, такие как Norton и McAfee, печально известны тем, что мешают обновлению Windows. Для уверенности лучше временно отключить стороннее антивирусное программное обеспечение, а также Защитник Windows при обновлении компьютера.
Отключить сторонний антивирус
К сожалению, процесс отключения каждого антивируса отличается, но обычно это можно сделать с помощью значка на панели задач. Найдите свое антивирусное программное обеспечение на панели задач, затем щелкните его правой кнопкой мыши и выберите « Отключить защиту» .
Отключить Защитник Windows
Защитник Windows также может вызывать проблемы при обновлении, поэтому лучше отключить его. Для этого выполните следующие действия:
- Нажмите « Пуск» , затем перейдите в « Настройки» .
- В меню «Настройки» выберите « Обновление и безопасность» .
- На панели навигации слева нажмите Безопасность Windows.
- В открывшемся окне в разделе Области защиты щелкните Защита от вирусов и угроз .
- Затем нажмите « Управление настройками» в разделе « Настройки защиты от вирусов и угроз» .
- Выключите защиту в реальном времени .
После установки обновления и устранения ошибки 0x8007001F вы можете снова включить антивирусную программу.
3. Устранение неполадок аудиодрайвера.
Основной причиной ошибки 0x8007001F является поврежденный или проблемный аудиодрайвер. Лучший способ решить эту проблему – запустить средство устранения неполадок со звуком, а затем вручную обновить аудиодрайверы. Всегда полезно знать, как найти и заменить другие устаревшие драйверы .
Запустите средство устранения неполадок со звуком
- Нажмите « Пуск», а затем перейдите в « Настройки» .
- Выберите опцию Система .
- На панели навигации слева нажмите « Звук» .
- Найдите кнопку с надписью « Устранение неполадок» и нажмите на нее.
- Подождите, пока средство устранения неполадок завершит обнаружение и устранение проблем.
Обновите аудиодрайверы
Хотя Windows обычно обновляет системные драйверы автоматически, в данном конкретном случае аудиодрайвер, скорее всего, устарел. Чтобы обновить драйвер вручную с помощью диспетчера устройств , выполните следующие действия:
- Нажмите Windows Key + R, чтобы запустить команду «Выполнить». В текстовом поле введите devmgmt.msc и нажмите Enter.
- В окне диспетчера устройств перейдите в раздел Звуковые, видео и игровые контроллеры и разверните меню.
- Щелкните правой кнопкой мыши свой аудиодрайвер и выберите « Обновить драйвер» .
- В открывшемся окне нажмите Автоматический поиск обновленного программного обеспечения драйвера .
- Windows автоматически загрузит и установит последние версии драйверов.
4. Исправить поврежденные системные файлы
Часто отсутствующие или поврежденные системные файлы могут вызывать множество проблем на вашем компьютере. Один из наиболее распространенных симптомов поврежденной файловой системы – проблемы с Центром обновления Windows. К счастью, в Windows есть несколько мощных инструментов для сканирования и исправления поврежденных системных файлов. Два самых популярных инструмента включают DISM и SFC.
Используйте DISM для восстановления образа системы
DISM означает обслуживание образов развертывания и управление ими. Короче говоря, эта услуга устраняет проблемы в образе системы. Хорошо работает в тандеме с SFC.
- В строке поиска меню «Пуск» введите cmd . В результатах поиска щелкните правой кнопкой мыши Командную строку и выберите Запуск от имени администратора .
- В консоли командной строки введите DISM.exe / Online / Cleanup-image / Scanhealth и нажмите Enter.
- Подождите, пока процесс завершится, затем введите DISM.exe / Online / Cleanup-image / Restorehealth и нажмите Enter.
- После завершения процесса пришло время использовать SFC.
Используйте SFC для восстановления поврежденных системных файлов
SFC расшифровывается как System File Checker, и это именно то, что она делает. Он проверяет наличие поврежденных или отсутствующих системных файлов и восстанавливает их. Он также используется для диагностики многих распространенных ошибок BSOD.
- В строке поиска меню «Пуск» введите cmd . В результатах поиска щелкните правой кнопкой мыши Командную строку и выберите Запуск от имени администратора .
- В консоли командной строки введите sfc / scannow .
- Подождите, пока процесс завершится, а затем перезагрузите компьютер.
Если ни один из упомянутых выше методов не работает, вы можете использовать Windows Media Creation Tool для обновления Windows 10 вручную.
Этот инструмент не является встроенным, и пользователям придется загрузить его с официального веб-сайта Microsoft . Перейдите на сайт и выберите Создать установочный носитель Windows 10 . После загрузки инструмента выполните следующие действия, чтобы обновить Windows:
- Запустите средство создания мультимедиа. Для этого вам потребуются права администратора.
- В окне установки Windows 10 выберите опцию « Обновить этот компьютер сейчас» и нажмите « Далее» .
- Подождите, пока инструмент загрузит последнюю версию Windows 10.
- На следующем экране нажмите « Изменить, что оставить» .
- Выберите вариант « Сохранить личные файлы и приложения» и нажмите «Далее».
- Нажмите « Установить» и терпеливо дождитесь завершения процесса.
Исправлены обновления Windows
Следуя вышеупомянутым шагам, пользователи могут легко исправить ошибку 0x8007001F в Windows 10. Хотя Windows обычно отображает коды ошибок, когда не может установить обновления, иногда помощник по обновлению может просто зависнуть. В таких случаях лучше знать, как безопасно спасти свои обновления.
Updating your computer is important to protect it from vulnerabilities and keep it running smoothly. However, Windows Update errors can be frustrating and prevent you from downloading or installing available updates.
One of the errors you might encounter is the Windows 10/11 error 0x8007001F. This is a fairly common Windows Update issue that is often encountered by Windows users. And it’s not something new. This error has been around since the earlier versions of the Windows operating system. This means that a lot of users had encountered this error and were able to resolve it.
This article will help you understand more what the error 0x8007001F on Windows 10/11 is before we list out the different ways to fix it.
What Is the Windows 10/11 Error 0x8007001F?
Did you get any of the following error messages?
- There were some problems installing updates, but we’ll try again later. If you keep seeing this and want to search the web or contact support for information, this may help -(0x8007001F).
- Something went wrong
Microsoft can’t install important security updates on your PC.
Please contact Microsoft Support for help with this error.
Please provide the support representative with this error code: 0x8007001F - We couldn’t install Windows 10/11
We’ve sent your PC back to the way it was right before you started installing Windows 10/11
0x8007001F
As you can see in the error messages above, the Windows 10/11 error 0x8007001F does not only occur when installing updates. It can also happen when you’re installing Windows 10/11 itself.
With Windows rolling out the build 2004 version recently, a lot of Windows users have again faced this problem. This error prevents Windows users from installing available updates, which can be dangerous for your computer. If you keep on skipping the updates, some of your apps might have problems functioning or might not work at all. You might also be targeted by cybercriminals who take advantage of system vulnerabilities to spread malware.
So when you get this error, it is crucial that you resolve it as soon as possible.
But What Causes Error Code 0x8007001F on Windows 10/11?
There are various elements involved when you try to install updates on your Windows computer. When any of these elements malfunction or goes missing, the entire update process fails and you get an error code, such as 0x8007001F.
The question is, what triggers this particular error?
One of the characteristics of this bug is that it is often accompanied by other symptoms, like the lack of Bluetooth connectivity and sound issues. We could infer from this that error is somehow related to your device drivers. It could arise due to a faulty audio driver or maybe a compatibility problem between Windows 10/11 and your PC’s hardware.
Missing, incomplete, or corrupted installation files are also factors you should look into when you get this error. The download was probably interrupted due to internet issues, which then led to the incomplete installation files. Or perhaps your files were corrupted by malware running rampant on your PC. Anything can happen and there are several scenarios that could bring about this error.
How to Fix Error Code 0x8007001F on Windows 10/11
Fixing Windows Update errors is a really straightforward process as long as you know what went wrong. In this case, the culprit is most probably compatibility issues between your OS and your hardware.
Before you go about fixing this error, here’s a checklist of the things you need to consider when installing updates:
- Make sure your internet connection is stable to prevent download interruption.
- Scan your computer for malware and clean out junk from your computer using a PC cleaner.
- Close all unnecessary apps when installing updates.
- Make sure you have enough storage for the installation files.
- Restart your PC every time you want to run Windows Update.
Now, to proceed with the troubleshooting process, check out the solutions below to see which one applies to your case.
Method 1: Use Windows Update Troubleshooter.
The first thing you do when you encounter any error or issue with Windows Update is to run the built-in Windows troubleshooter. This tool can help resolve known Windows Update issues.
To use the utility, follow the steps below.
- Press Windows + S to bring up the search dialog.
- Type in troubleshooter in the search box.
- Click on Troubleshoot Settings.
- Click Windows Update from the right panel.
- Hit the Run the troubleshooter button.
The troubleshooter will scan your computer for a few minutes as it tries to detect and resolve any issues with Windows Update. Once it has finished the process, you can try to download the updates again and see if the error 0x8007001f has been fixed.
Method 2: Run Audio Troubleshooter.
When the error code is accompanied by audio problems, then you can try running the audio troubleshooter. To run the audio troubleshooter:
- Press Windows + S to bring up the search dialog.
- Type in troubleshooter in the search box.
- Click on Troubleshoot Settings.
- Click on Playing audio.
- Hit the Run the troubleshooter button.
The troubleshooter will scan your computer for a few minutes as it tries to detect and resolve any issues with your sound settings. If your audio drivers are outdated, you will be prompted by the troubleshooter to update them to fix the error. Once done, check if the error 0x8007001F has been resolved.
Method 3: Reset Windows Update Service.
If the above solutions aren’t effective or the Windows 10/11 error 0x8007001F does not come with any other issues, then you should try resetting the Windows Update service by following the instructions below”
- Press Windows + R to open the Run dialog.
- Type in services.msc, then press Enter.
- In the Services window, find Windows Update and right-click on it.
- Click on Properties to open the Windows Update Properties window.
- Click on the General tab.
- Scroll down to the Startup type menu and set it to Disabled.
- Click Apply > OK to save your changes.
Restart your PC for the changes to take effect and see if the error no longer pops up when you install the updates.
Method 4: Use the Media Creation Tool.
If the error 0x8007001f does not go away after following the solutions above, then you need to use the Media Creation Tool to update your OS. To do this, you need to download the Windows Media Creation tool from the Microsoft website.
Next, use the tool to download the latest Windows updates. Choose the version that fits your computer and follow the on-screen instructions to complete the update.
Summary
Getting the error 0x8007001f when updating your computer can be troublesome. Not only does it keep your computer from functioning properly, it also prevents you from updating your OS to the latest version. If you encountered this error, you don’t have to worry because you can use the guide above to resolve it.
Give us some love and rate our post!