Windows 10 ошибка при установке windows 10 0x8007001f

Во время апдейта до 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.

First run the Windows update troubleshooter

by Ivan Jenic

Passionate about all elements related to Windows and combined with his innate curiosity, Ivan has delved deep into understanding this operating system, with a specialization in drivers and… read more


Updated on

  • An issue with the audio drivers triggers the We couldn’t install this update 0x8007001f error, but our guide will help you fix it quickly.  
  • Unfortunately, this problem prevents you from updating your OS, so it’s imperative to solve it as soon as possible.
  • We’ve listed all possible solutions to help you, including using the Microsoft Update Assistant.

Fix Update error 0x8007001F

XINSTALL BY CLICKING THE DOWNLOAD
FILE

Update errors aren’t a novelty in the Windows OS history. Some of them are easy to resolve, while others are quite challenging.

Today we’ll try to address an error that goes by the code 0x8007001F. This error is closely related to audio drivers and prevents users from updating Windows 10.

There are a few possible workarounds applicable to this problem, so follow these steps, and hopefully, we can work it out.

What causes Windows Update error 0x8007001f?

Glitches cause upgrade error 0xc1900208 and similar ones with Windows Update, and usually, a built-in troubleshooter can fix those.

For example, upgrade error 0x80070714 can occur if your firewall or antivirus is blocking the update process, so we encourage you to check your security settings.

An error such as this can also cause Windows installation failed in safe OS phase message to appear, so make sure that your installation media isn’t corrupted.

Update error 0x8007001F can prevent you from installing the latest updates, which can be a big problem. Speaking of update issues, here are some problems that users reported:

  • Windows failed to install the following update with error 0x8007001f – We couldn’t install this update but you can try again (0x8007001f)
  • Windows 10 update assistant error 0x8007001f
  • 0x8007001f Windows 11, Windows 10, Windows 7
  • Windows 11 install error 0x8007001f
  • Windows update error 0x8007001f
  • 0x8007001f – 0x20006, 0x3000d, 0x2000d
  • Game Pass error 0x8007001f

Without further ado, let’s just jump right in!

How do I fix error 0x8007001F 0x20006?

In this article

  • What causes Windows Update error 0x8007001f?
  • How do I fix error 0x8007001F 0x20006?
  • 1. Use the Windows update troubleshooter
  • 2. Disable the antivirus
  • 3. Uninstall the audio drivers
  • 4. Restart the Windows Update Service
  • 5. Perform SFC and DISM checks
  • 5.1 Run a quick SFC scan
  • 6. Perform a clean boot
  • 7. Create a new user account
  • 8. Perform an in-place upgrade
  • How can I fix the update error 0x8007001F on Windows 11?
  • 1. Windows Update Cache

1. Use the Windows update troubleshooter

  1. Click the Start button and select Settings.
  2. Now choose Update & Security.
  3. Click on Troubleshoot from the left pane, then select Additional troubleshooters from the right.
  4. Click on Windows Update to expand it, then hit the Run the troubleshooter button.
  5. The system will find any possible issue with the update and attempt to fix it. Just follow the additional steps to proceed.

2. Disable the antivirus

  1. Hit the Start icon and click on Settings.
  2. Select Update & Security.
  3. From the menu on the left, select Windows Security and click on Open Windows Security in the right pane.
  4. Select Virus & threat protection.
  5. If you don’t have a third-party antivirus installed, choose Virus & threat protection settings and disable Windows Defender protection. If you do, click on the Open app, which will bring you to the menu of your antivirus.
  6. Usually, the button to disable the antivirus is within its Security settings, but that may be different for every antivirus.

Although your antivirus will offer protection from malware, sometimes it can interfere with your system and cause a 0x8007001F error to appear.

We recommend changing your antivirus settings and disabling certain features to fix the problem. In the worst-case scenario, you might even have to remove your antivirus from your PC altogether.

How we test, review and rate?

We have worked for the past 6 months on building a new review system on how we produce content. Using it, we have subsequently redone most of our articles to provide actual hands-on expertise on the guides we made.

For more details you can read how we test, review, and rate at WindowsReport.

Many users reported that both Norton and McAfee could cause this error to appear, so if you’re using one of these tools, be sure to remove them.

3. Uninstall the audio drivers

  1. Click the Start button, type device manager, and select the results.
  2. Navigate to the Sound, video, and game controllers section, right-click your audio device and select Uninstall device.
  3. If available, check the Remove driver software for this device. Now click the Uninstall button to remove the driver.

According to users, sometimes, error 0x8007001F can appear on your PC due to your audio drivers. For example, you might encounter this issue if your audio drivers are outdated or corrupted.

After that, you should try to download the latest drivers for your audio device. Then, simply visit your motherboard or sound card manufacturer’s website and download the latest drivers.

Up next, check if the problem is resolved. To avoid permanent damage to your PC by downloading and installing the wrong driver versions, we strongly recommend using Outbyte Driver Updater.

This tool will automatically download all the outdated drivers on your PC and help you fix this issue with only a few clicks.

Outbyte Driver Updater

Keep your drivers up to date to avoid such errors with this amazing tool.

4. Restart the Windows Update Service

  1. Press Windows key + R and enter services.msc, then press Enter or click OK.
  2. In the Services list, search for Windows Update, right-click on it, and open Properties.
  3. Now choose Disabled as Startup Type.
  4. Save the changes and restart your PC; check if the service is still disabled after the reboot.
  5. Press the Windows key + E to start File Explorer, navigate the path below and find the SoftwareDistribution folder.
    C:\Windows
  6. Rename the folder to SoftwareDistribution.OLD (you can delete it, as well, but why take unnecessary risks).
  7. Once again, start the Services app as shown in steps 1 and 2 and, in Properties, change the Startup Type from Disabled to Manual.
  8. Go to Start and open Settings on the left side.
  9. Open Update & Security and Check for updates.

Update service can be a culprit for various update issues. Additionally, it’s known for inflicting heavy CPU usage occasionally for no apparent reason.

Nevertheless, we will show you a possible workaround that can be used with most of the update errors. And the one we are currently addressing is not an exception.

Remember that you’ll need administrative access to change/delete system folders. This procedure proved as a good solution for multiple update errors. However, if the problem is persistent, move on to the next solution.

5. Perform SFC and DISM checks

5.1 Run a quick SFC scan

  1. Click the Start button, type cmd, and select Run as administrator to start Command Prompt with full privileges.
  2. When Command Prompt opens, type the following command and press Enter to run it:
    sfc /scannow
  3. SFC scan will now start. This scan can take up to 15 minutes, so don’t interfere with it.

Sometimes error 0x8007001F can appear due to corrupted system files. If that’s the case, we recommend performing an SFC scan and repairing your files.

Once the SFC scan is finished, check if the problem is resolved.

The system update malfunctions are closely related to file corruption. In addition, some system files can get corrupted or quarantined due to malware infections.

For that reason, DISM (Deployment Image Servicing and Management) can be used to scan and resolve this issue by repairing broken files, so follow the steps below.

5.2 Run a DISM scan

  1. Hit the Windows button, type cmd, then select Run as administrator from the results.
  2. Type the following command and press Enter to run it:
    DISM.exe /Online /Cleanup-image /Restorehealth
  3. The scanning will take a couple of minutes, so don’t interfere with the process.

6. Perform a clean boot

  1. Press Windows key + R and enter msconfig, then press Enter or click OK.
  2. Go to the Services tab, check Hide all Microsoft services, and click on the Disable all button.
  3. Go to the Startup tab and click Open Task Manager.
  4. Now, check if you have any programs you don’t want to run in the startup, right-click on them one by one and select Disable.
  5. Go back to the System Configuration window and click Apply and OK to save the changes.
  6. Restart your PC.

According to users, third-party applications sometimes interfere with your system, leading to this error. However, you might be able to fix the problem simply by performing a clean boot.

Once your PC restarts, all startup applications, and services will be disabled, ensuring that third-party applications don’t interfere with the upgrade process.

Read more about this topic

  • FIX: Windows 10 update error code 0xc1900107
  • Windows 10/11 update error 0x8007042B [FIX]
  • Fix: Error 0x8007042B in Windows Update [Windows 10 & 11]

7. Create a new user account

  1. Click the Start button and select Settings.
  2. When the Settings app opens, navigate to the Accounts section.
  3. In the left pane, select Family & other people and then click on Add someone else to this PC.
  4. Now select I don’t have this person’s sign-in information.
  5. Select Add a user without a Microsoft account.
  6. Now enter the desired user name and click Next.

The issue might be a corrupted user account if you have problems updating due to error 0x8007001F. However, you might be able to circumvent this issue simply by creating a new user account.

After creating a new account, switch to it and check if the problem is resolved.

8. Perform an in-place upgrade

  1. Download the Microsoft Update Assistant and run it on your PC.
  2. If the tools detect a new update, select Upgrade this PC now. If not, you will see the message Thank you for updating to the latest version of Windows 10.
  3. Follow the instructions on the screen to complete the setup, and select the option to keep your files if you’re asked.

If you can’t install Windows updates due to error 0x8007001F, you might want to try performing an in-place upgrade. By doing that, you’ll force Windows 10 to update to the latest version.

Once the process is finished, you’ll have the latest version of Windows installed, and all your files and apps will be preserved.

How can I fix the update error 0x8007001F on Windows 11?

1. Windows Update Cache

  1. Press hotkeys Windows + X, then select Terminal (Admin).
    0x8007001f
  2. Type the script below and hit Enter.
    net stop wuauserv
  3. Type C: and hit Enter.
  4. Now type the script below and hit Enter.
    cd %Windir%\SoftwareDistribution
  5. Finally, type the delete code below and hit Enter.
    del /f /s /q Download

Although Windows 11 has an updated interface and new features, it still inherits many problems from Windows 10, including the Windows Update error code 0x8007001F.

However, all the solutions presented in this guide can also be applied to the new OS without any problems.

The Installation Assistant will help you install a fresh copy of Windows 11

The only slight difference is for step 7, where you need to download the Windows 11 Installation Assistant instead.

Of course, the process will also be slightly different because it’s not an updater tool, but it will help you install a fresh copy of Windows 11.

However, if you keep your files within the procedure, your data will be OK. But as an added security measure, it’s better to back up your files first.

That should wrap it up. Your error should have been resolved if you had followed these instructions closely. In case you have some questions or additional workarounds, please be sure to inform us in the comments section.

Also, for any suggestions or additional problems, feel free to use our comments section below, and we will come back with an answer as soon as possible.

newsletter icon

На чтение 10 мин. Просмотров 6.6k. Опубликовано

Ошибки обновления не являются новшеством в истории ОС Windows. Некоторые из них легко решить, а некоторые из них довольно сложны.

Сегодня мы попытаемся решить проблему с кодом 0x8007001F . Эта ошибка тесно связана с драйверами аудио и не позволяет пользователям обновляться в Windows 10.

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

Содержание

  1. Как я могу исправить ошибку обновления 0x8007001F в Windows 10?
  2. Решение 1 – отключить антивирус
  3. Решение 2 – Удалить аудио драйверы
  4. Решение 3. Перезапустите службу Центра обновления Windows
  5. Решение 4 – Выполните проверку SFC и DISM
  6. Решение 5 – Выполните чистую загрузку
  7. Решение 6 – Создать новую учетную запись пользователя
  8. Решение 7. Выполните обновление на месте

Как я могу исправить ошибку обновления 0x8007001F в Windows 10?

Ошибка обновления 0x8007001F может помешать установке последних обновлений, что может быть большой проблемой. Говоря о проблемах обновления, вот некоторые проблемы, о которых сообщили пользователи:

  • Windows не удалось установить следующее обновление с ошибкой 0x8007001f . Обычно эта ошибка вызывается сторонними приложениями. Если вы столкнулись с ней, попробуйте отключить антивирус или выполнить чистую загрузку.
  • Ошибка помощника по обновлению Windows 10 0x8007001f . Иногда ваши драйверы могут вызывать эту проблему, поэтому рекомендуется обновить важные драйверы, прежде чем пытаться обновить Windows.
  • Ошибка обновления Windows 7, 8.1 . Ошибки обновления могут появляться и в более старых версиях Windows. Даже если вы не используете Windows 10, вы сможете без проблем применять большинство наших решений для более старых версий Windows.

Решение 1 – отключить антивирус

Хотя ваш антивирус обеспечивает защиту от вредоносных программ, иногда он может помешать работе вашей системы и вызвать ошибку 0x8007001F.

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

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

Для пользователей Norton у нас есть специальное руководство о том, как полностью удалить его с вашего ПК. Существует также аналогичное руководство для пользователей McAffe.

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

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

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

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

Хотите заменить свой антивирус на лучший? Вот список с нашими лучшими выборами.

Решение 2 – Удалить аудио драйверы

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

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

  1. Нажмите Windows Key + X и выберите Диспетчер устройств из списка.
  2. Теперь перейдите в раздел Звуковые, видео и игровые устройства и щелкните правой кнопкой мыши свое аудиоустройство. Выберите в меню Удалить устройство .
  3. Откроется диалоговое окно подтверждения. Если доступно, установите флажок Удалить программное обеспечение драйвера для этого устройства . Теперь нажмите кнопку Удалить , чтобы удалить драйвер.

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

Знаете ли вы, что большинство пользователей Windows 10 имеют устаревшие драйверы? Будьте на шаг впереди, используя это руководство.

После обновления вашего аудио драйвера, проверьте, решена ли проблема.

Чтобы избежать необратимого повреждения вашего ПК путем загрузки и установки неправильных версий драйверов, мы настоятельно рекомендуем Средство обновления драйверов TweakBit (одобрено Microsoft и Norton).

Этот инструмент автоматически загрузит все устаревшие драйверы на ваш компьютер.

Отказ от ответственности: некоторые функции этого инструмента не являются бесплатными.

Решение 3. Перезапустите службу Центра обновления Windows

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

Тем не менее, мы покажем вам возможный обходной путь, который можно использовать с большинством ошибок обновления. И тот, к которому мы сейчас обращаемся, не является исключением. Вот что вам нужно сделать:

  1. Нажмите Windows Key + R и введите services.msc . Теперь нажмите Enter или нажмите ОК .
  2. В списке служб найдите Центр обновления Windows . Нажмите правой кнопкой мыши и откройте Свойства .
  3. Теперь выберите Отключено в качестве Тип запуска .
  4. Сохраните изменения и перезагрузите компьютер.
  5. Еще раз проверьте службы и убедитесь, что Центр обновления Windows отключен.
  6. Перейдите в C: \ Windows и найдите папку SoftwareDistribution .
  7. Переименуйте папку в SoftwareDistribution.OLD (вы также можете ее удалить, но зачем рисковать).
  8. Еще раз перейдите в раздел «Службы» и найдите Центр обновления Windows и в разделе «Свойства» измените Тип запуска с Отключено на Вручную .
  9. Перейдите в Пуск и откройте Настройки на левой стороне.
  10. Откройте Update & Security и проверьте наличие обновлений.

Имейте в виду, что вам потребуется административный доступ для изменения/удаления системных папок. Эта процедура зарекомендовала себя как правильное решение для нескольких ошибок обновления. Однако, если проблема не устранена, перейдите к следующему решению.

Для получения дополнительной информации о том, как удалить папку Software Distribution, ознакомьтесь с этим специальным руководством. Есть похожая статья о переименовании папки Software Distribution.

Не можете обновить Windows? Проверьте это руководство, которое поможет вам решить их в кратчайшие сроки.

Решение 4 – Выполните проверку SFC и DISM

Иногда ошибка 0x8007001F может появиться из-за поврежденных системных файлов. Если это так, мы рекомендуем выполнить сканирование SFC и восстановить ваши файлы. Для этого вам необходимо выполнить следующие шаги:

  1. Нажмите Windows Key + X , чтобы открыть меню Win + X. Теперь выберите Командную строку (Администратор) из списка. Вы также можете использовать PowerShell (Admin) , если Командная строка недоступна.
  2. Когда откроется Командная строка , запустите команду sfc/scannow .
  3. Сканирование SFC начнется. Это сканирование может занять до 15 минут, поэтому не мешайте ему.

По завершении сканирования SFC проверьте, устранена ли проблема.

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

Команда сканирования теперь остановлена ​​до завершения процесса? Не волнуйтесь, у нас есть простое решение для вас.

Неисправности обновления системы тесно связаны с повреждением файла. А именно, из-за заражения вредоносным ПО некоторые системные файлы могут быть повреждены или помещены на карантин.

По этой причине DISM (Deployment Image Service and Management) можно использовать для сканирования и решения этой проблемы путем восстановления поврежденных файлов.

  1. Щелкните правой кнопкой мыши на «Пуск» и запустите командную строку (Admin).
  2. Введите следующую команду:

    • DISM.exe/Online/Cleanup-image/Restorehealth

  3. Если у службы возникли проблемы с подключением через Update, вы можете использовать системный диск USB/DVD. Просто вставьте носитель и введите следующую команду:

    • DISM.exe/Online/Cleanup-Image/RestoreHealth/Источник: C: Ваш источник восстановления Windows/LimitAccess
  4. Убедитесь, что вы заменили исходный путь восстановления своим собственным.

Кажется, что все теряется при сбое DISM в Windows? Посмотрите это краткое руководство и избавьтесь от забот.

Решение 5 – Выполните чистую загрузку

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

  1. Нажмите Windows Key + R и введите msconfig . Нажмите Enter или нажмите ОК .

  2. Появится окно Конфигурация системы . Перейдите на вкладку Службы и установите флажок Скрыть все службы Microsoft . Теперь нажмите кнопку Отключить все .
  3. Перейдите на вкладку Автозагрузка и нажмите Открыть диспетчер задач .
  4. Список запускаемых приложений теперь появится в Диспетчере задач . Щелкните правой кнопкой мыши первый элемент в списке и выберите в меню Отключить . Теперь повторите эти шаги для всех элементов автозагрузки в списке.
  5. Вернитесь в окно Конфигурация системы и нажмите Применить и ОК , чтобы сохранить изменения.
  6. Перезагрузите компьютер.

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

Если вы хотите узнать, как добавлять или удалять загрузочные приложения в Windows 10, ознакомьтесь с этим простым руководством.

Не удается открыть диспетчер задач? Не волнуйтесь, у нас есть правильное решение для вас.

Решение 6 – Создать новую учетную запись пользователя

Если у вас возникли проблемы с обновлением из-за ошибки 0x8007001F, возможно, проблема в поврежденной учетной записи пользователя. Тем не менее, вы можете обойти эту проблему, просто создав новую учетную запись пользователя. Для этого выполните следующие простые шаги:

  1. Нажмите Ключ Windows + I , чтобы открыть приложение Настройки .
  2. Когда откроется приложение Настройки , перейдите в раздел Аккаунты .
  3. На левой панели выберите Семья и другие люди . На правой панели выберите Добавить кого-то еще на этот компьютер .
  4. Теперь выберите У меня нет информации для входа этого человека .
  5. Вас попросят создать учетную запись Microsoft. Выберите Добавить пользователя без учетной записи Microsoft .
  6. Теперь введите желаемое имя пользователя и нажмите Далее .

После создания новой учетной записи переключитесь на нее и проверьте, решена ли проблема.

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

Windows не позволяет добавить новую учетную запись пользователя? Выполните несколько простых шагов и создайте или добавьте, сколько учетных записей вы хотите!

Решение 7. Выполните обновление на месте

Если вы не можете установить Обновления Windows из-за ошибки 0x8007001F, вы можете попробовать выполнить обновление на месте. Сделав это, вы заставите Windows 10 обновиться до последней версии. Для этого вам необходимо сделать следующее:

  1. Загрузите Инструмент создания медиа и запустите его на своем ПК.
  2. Выберите Обновить этот компьютер сейчас .
  3. Подождите, пока приложение готовит вашу систему.
  4. Теперь выберите Загрузить и установить обновления (рекомендуется) и нажмите Далее .
  5. Следуйте инструкциям на экране, пока не перейдете на экран Готов к установке . Теперь выберите Изменить то, что оставить .
  6. Выберите Сохранить личные файлы и приложения и нажмите Далее .
  7. Следуйте инструкциям на экране для завершения настройки.

После завершения процесса у вас будет установлена ​​последняя версия Windows, и все ваши файлы и приложения будут сохранены.

Не можете запустить инструмент создания Windows Media? Не волнуйтесь, у нас есть правильное решение для вас.

Это должно обернуть это. Ваша ошибка должна быть устранена, если вы строго следовали этим инструкциям. Если у вас есть какие-либо вопросы или дополнительные обходные пути, обязательно сообщите нам об этом в разделе комментариев.

Чтобы узнать больше об обходах Windows Update и получить дополнительную информацию, обязательно посетите наш Центр обновления Windows.

СВЯЗАННЫЕ ИСТОРИИ, КОТОРЫЕ ВЫ ДОЛЖНЫ ПРОВЕРИТЬ:

  • Как запретить Windows 10 обновлять определенные драйверы
  • Исправлено: ошибка Windows Update с кодом 0x80070020
  • Как запускать приложения и игры для iOS в Windows 10
  • Исправлено: ошибка обновления Windows 10 0x8000ffff

10.04.2021

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

Ошибка 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 появляться не будет, а система получит последний апдейт.

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.

  • Windows 10 переведена не полностью
  • Windows 10 параметры запуска игры
  • Windows 10 ошибка при установке не найдены файлы
  • Windows 10 папка автозапуска программ
  • Windows 10 перезагружается после включения