Код ошибки 0xc1900201 при обновлении в windows 11

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

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

Обновление функций до Windows 10, версия 1709 — 0xc1900201

По всей видимости, подобная ошибка появляется только на Windows 10 и ни на какой другой версии ОС Майкрософт.

Причины появления ошибки 0xc1900201

На сегодняшний день известно, что ошибка 0xc1900201 может появляться по следующему ряду причин:

  • Центр обновления Windows застрял между обновлениями.
  • Один из компонентов Центра обновления начал работать некорректно.
  • Проблемы с верификацией аппаратного обеспечения на клонированной операционной системе.
  • Серьезные повреждение системных файлов.

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

Методы решения ошибки 0xc1900201

0xc1900201

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

Не спешите копаться в операционной системе! Первым делом вы должны пустить в дело автоматизированное средство устранения неполадок. Стоит заметить, что данное средство — не палочка-выручалочка. Проще говоря, либо оно вам поможет, либо оно не сделает ничего. Так или иначе попробовать определенно стоит. Чтобы запустить средство устранения неполадок Windows 10, вам нужно сделать следующее:

  • нажмите Win+I на клавиатуре для открытия Параметров системы;
  • откройте раздел Обновление и безопасность;
  • перейдите во вкладку Устранение неполадок;
  • найдите в списке Центр обновления Windows и выберите его ЛКМ;
  • нажмите на кнопку Запустить средство устранения неполадок;
  • следуйте за инструкциями средства на вашем экране;
  • закончив работать со средством, перезагрузите компьютер.

Попробуйте обновить Windows 10 еще раз. На сей раз ошибка 0xc1900201 могла исчезнуть.

Метод №2 Сброс всех компонентов с помощью «битника»

Появление подобных ошибок может возникать в результате некорректной работы одного или нескольких компонентов Центра обновления Windows 10. Восстановить поврежденные компоненты очень легко с помощью самодельного «батника» (файла с расширением .bat), в котором заложен особый скрипт. Сейчас мы покажем вам, как создать такой батник и как им пользоваться.

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

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

Ни в коем случае ничего не меняйте в скрипте! Если вы поставите хотя один лишний пробел, точку или другой символ, то скрипт попросту потеряет свою полезность. Скопировали и вставили в текстовик — готово. Ок, теперь сохраните внесенные изменения в текстовый файл, нажмите на него ПКМ и выберите переименовать. Измените расширение файла с .txt на .bat.

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

Нажмите ПКМ на созданный файл и выберите Запуск от имени администратора. И… на этом все. Созданный вами «батник» в автоматическом режиме сбросит все компоненты Центра обновления Windows 10. Перезагрузите компьютер и попробуйте обновить свою систему еще раз. Ошибка 0xc1900201 наверняка исчезла, если проблема действительно заключалась в поврежденных компонентах ЦО.

Метод №3 Завершение переноса ОС с HDD на SSD

Многие пользователи клонируют уже обжитую ОС, чтобы перенести ее со старенького жесткого диска на современный, быстрый твердотельный накопитель. Тем не менее во время процесса клонирования и переноса ОС может пойти что-то не так, вследствие чего система работает не совсем корректно. Возможно, ошибка 0xc1900201 как раз и стала результатом не самого удачного клонирования ОС.

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

  • нажмите Win+R;
  • пропишите в пустой строке regedit.msc и нажмите Enter;
  • перейдите через навигационную строку по ветке Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control;
  • нажмите ПКМ на параметр PortableOperatingSystem и выберите Изменить;
  • выберите шестнадцатеричную систему исчисления и измените значение параметра на 0;
  • сохраните изменения в реестре системы и перезагрузите компьютер.

Метод №4 Запуск утилиты DISM

Если никакие из вышеуказанных методов не работают и ошибка 0xc1900201 все еще донимает вас, то мы советуем воспользоваться утилитой Deployment Image Servicing and Management (DISM). Ваша задача — восстановить прежний образ системы, починить ее поврежденные компоненты. Вот что вам нужно сделать:

  • нажмите Win+R;
  • впишите в пустую строку cmd и нажмите Ctrl+Shift+Enter;
  • вставьте команду DISM /Online /Cleanup-Image /RestoreHealth и нажмите Enter;
  • дождитесь окончания работы команды и перезагрузите компьютер.

По входу в систему запустите обновление Windows 10 через ЦО и посмотрите, исчезла ли ошибка 0xc1900201 или нет. Ну а если и это не помогло, то остается попробовать удалить последние обновление, вернуть компьютер в исходное состояние либо полностью переустановить операционную систему. Удачи!

by Aleksandar Ognjanovic

Aleksandar’s main passion is technology. With a solid writing background, he is determined to bring the bleeding edge to the common user. With a keen eye, he always… read more


Updated on

  • If the upgrade procedure suddenly crashes every time you give it a go, you may need to change how the upgrade is distributed and the installation source.
  • Windows Update is pretty plagued with issues, so your optional way out of this is to use an external source.
  • You can always use the Windows above 10 installation media and perform a clean reinstallation.

fix Windows Update 0xc1900201 error

XINSTALL BY CLICKING THE DOWNLOAD
FILE

By the latest reports, three-quarters of Windows 10 users have obtained Windows 10 Fall Creators Update.

However, some users recently prompted to upgrade to version 1709 bump into an upgrade error baring the code 0xc1900201.

Seemingly, they cannot overcome this error after a few tries and can confirm that the connection or update services are responsible for the error at hand.

We prepared a list of the most common solutions that should fix the issue or provide a viable alternative. So, if you’re stuck with the 0xc1900201 Windows Update error on Windows 10 or Windows 11, make sure to check the list below.

How can I fix the error code 0xc1900201?

In this article

  • How can I fix the error code 0xc1900201?
  • 1. Expand System Reserved Partition
  • 2. Use Media Creation Tool
  • 3. Perform a clean reinstallation

1. Expand System Reserved Partition

This shouldn’t be something with what end-users should meet, but that’s Windows 10 for you. When it works – it works fine; when it doesn’t – you’ll need to turn to complex workarounds to make it work.

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.

In this scenario, you’ll need to resize your System Reserved Partition to obtain the latest upgrade, Falls Creator Update.

All chances are that its nominal values vary around 100 MB, while you’ll need 200 to 600 to upgrade to the latest Windows 10 iteration.

This is a rather complex operation, and many tech-savvy users advise using some partition-managing third-party tool. The best one and the most simple to use is EaseUS Partition Manager.

Also, it won’t cost you a thing to back up your system before we move through the steps.

  1. Firstly, create a system repair disk in case something goes awry.
  2. Download EaseUs Partition Manager.
  3. Install this nifty tool and run it.
  4. Select your system partition. The one where Windows 10 is installed initially (most of the time, is C:)
  5. Click Resize/Move.
  6. Under the Decide size and position, reduce the available space to approximately 600 MB.
  7. After that, you should be able to see free and unreserved Unallocated space to restart your PC.
  8. Once it boots again, press the Windows key + R to open the Run elevated command line.
  9. In the command line, type diskmgmt.msc and press Enter.windows 10 upgrade error 0xc1900201
  10. Right-click on the System Reserved Partition and click Extend Volume.windows 10 upgrade error 0xc1900201
  11. Add the unallocated space you previously created to System Reserved Partition and confirm changes.
  12. Restart your PC and try upgrading again.

After that, you should be able to install all significant updates without any issues whatsoever.

2. Use Media Creation Tool

If the upgrade procedure suddenly crashes every time you give it a go, you may need to change how the upgrade is distributed and the installation source.

Windows Update is pretty plagued with issues, so your optional way out of this is to use an external source: USB or DVD with the installation files. You can create such media with Media Creation Tool.

If the problem is in connection or upgrades file distribution, this should resolve it accordingly. Make sure to follow the steps below to create an installation media and upgrade to Windows 10 with it:

  1. First, download Media Creation Tool by following this link.
  2. Next, run the tool and accept the Licence Terms.
  3. Choose Upgrade this PC, and the downloading process should commence.
  4. Once it downloads files, Media Creation Tool will start applying upgrades.Windows 10 Setup
  5. This procedure should take up to 2 hours, depending on your Windows 10 version and bandwidth.
Read more about this topic

  • Windows 11 adds new icons for low-battery Bluetooth devices
  • Windows 11 will now notify users when apps request location
  • Microsoft added a scrollable view option to Quick Settings

3. Perform a clean reinstallation

Finally, if none of the previous steps fell short, you can always use the aforementioned Windows 10 installation media and perform a clean reinstallation.

Once your system is completely renewed, it should pack the Fall Creators Update, a.k.a version 1709.

If you’re not sure how to perform a clean reinstallation of Windows 10, check this article for in-depth insight and a step-by-step explanation of the complete procedure.

With that, we can conclude this article. However, if you’re still unable to make it work and the same error code 0xc1900201 reappears, don’t forget to send your ticket to Microsoft.

On the other hand, if you managed to resolve the issue alternatively, we’ll be grateful if you share it with us in the comments section below.

  • Why does Windows 10 version 1903 take so long to install?

The reason for a slow installation might be the free space on the drive. Another reason might be a slow Internet connection.

newsletter icon

The Windows update error 0xc1900201 pops up when the users try to install the latest upgrade, especially the Windows 11 22H2 upgrade. The error is accompanied by the statement, ‘We couldn’t update the system reserved partition.’

Windows Update Error 0xc1900201

Windows Update Error 0xc1900201

In most cases, the error is caused when the System Reserved Partition (SRP) becomes full. System Reserve Partitions (SRPs) are hard drive partitions that store boot information for Windows. This guide will walk you through the troubleshooting methods that fixed the issue for other users.

1. Resize the Partition

This error is caused when the System Reserve Partition (SRP) becomes full and does not have space for the update. This is why the most appropriate troubleshooting method to start is by resizing the partition.

We will remove the folders not often used to create the required space.

Here is all that you need to do:

  1. Open the Run program, and Press the Win + R keys together.
  2. Type diskmgmt.msc in Run and click Enter.
  3. In the following window, right-click on the disk that contains SRP and choose Properties from the context menu.Access the properties of the drive
    Access the properties of the drive
  4. Head over to the Volume tab and check your partition style. It will either be GUID Partition Table (GPT) or Master Boot Record (MBR).

1st Scenario: GPT Partition

If you have a GPT partition, proceed with the following methods:

  1. Press Win + R to open Run.
  2. Type cmd in Run and press Ctrl + Shift + Enter to open Command Prompt as an administrator.
  3. Alternatively, you can type cmd in the search area of the taskbar and choose Run as administrator.
  4. Click Yes in the User Account Control prompt.
  5. Now, type the following command in Command Prompt and hit Enter to execute it. By doing so, you will add the Y: driver letter to access the System Partition.
    mountvol y: /s
  6. Now, type Y: and hit Enter.
  7. Once done, type the following to open the Fonts folder. This is the folder that we will be removing.
    cd EFI\Microsoft\Boot\Fonts

    Execute the entered command

    Execute the entered command
  8. Now, type del *.* to delete font files.Delete the fonts folder
    Delete the fonts folder
  9. If asked to confirm the action, type Y and hit Enter.

You can now try installing the targeted update without any problems.

2nd Scenario: MBR Partition

If you have an MBR partition, the process will be slightly different and longer. Follow these steps to proceed:

  1. Press Win + R to open Run.
  2. Type diskmgmt.msc in Run and click Enter.
  3. Right-click on the partition marked as System Reservice.
  4. Choose Change Drive Letter and Paths and then click on Add.Change the drive letter and its path
    Change the drive letter and its path
  5. Enter Y: as the driver letter and click OK.Enter a drive letter
    Enter a drive letter
  6. Now, type cmd in the search area of the taskbar and click on Run as administrator.
  7. Click Yes in the User Account Prompt.
  8. Once you are inside the Command Prompt window, type Y: and click Enter. This will make you switch to that drive.
  9. Now, execute the following command to head over to the Fonts folder:
    cd Boot\Fonts
  10. Next, execute this command:
    takeown /d y /r /f .
  11. To backup the permission to the drive, execute the following command:
    icacls Y:\* /save %systemdrive%\NTFSp.txt /c /t
  12. Type whoami and hit Enter. Note down the username.
  13. Then, execute this command:
    icacls . /grant <username you got from whoami>:F /t
  14. Type del *.* to delete font files.
  15. To confirm the action, type Y and hit Enter.

Once this is done, you can restore the permissions of the drive by following these steps:

  1. In Command Prompt, execute the following command. If there are no successful files, then the command was executed incorrectly; you need to process some files before continuing.
    icacls Y:\ /restore %systemdrive%\NTFSp.txt /c /t
  2. Execute the following code to adjust the ACL back to the System:
    icacls . /grant system:f /t
  3. Using the following command, revert the drive’s ownership to System:
    icacls Y: /setowner “SYSTEM” /t /c

    Revert drive's ownership

    Revert drive’s ownership
  4. Now, head back to Disk Management and refresh the data. This will confirm if the SRP finally has enough free space.
  5. If it does, right-click on the System Reserved Partition and choose Change Drive Letter and Paths.
  6. Click on the Y: drive and choose Remove.
  7. Finally, hit OK and close the Disk Management window.

Once this is done, you can try to install the update again. Hopefully, you will be able to do it without any issues this time.

2. Perform a Reset or a Repair Install

By this point, you have not found a viable solution, which suggests that the problem cannot be fixed using conventional troubleshooting methods. Moving forward, you have two options.

You can restore Windows to its default state if you want to give your system a fresh start. With this method, you will remove all the applications you installed yourself. It will restore your Windows to its state when you purchase it.

The second option is a repair installation, which replaces all Windows files with fresh copies. However, this will not affect your files or programs.

Generally, both methods are believed to solve the problem, so you can choose whichever method you prefer.

Photo of Zainab Falak

Zainab Falak

Zainab Falak is a highly educated professional with a background in actuarial science and a strong passion for technology. Her expertise lies in the field of data analytics and she is a proficient programmer in languages such as Python and R. At Appuals, Zainab shares her extensive knowledge of Windows 8, 10, and 11, covering a broad range of topics related to these operating systems. Zainab’s ability to effectively communicate technical concepts in a clear and concise manner has earned her recognition and respect in the tech community. She is committed to staying up-to-date with the latest developments in the field and providing readers with insightful and informative content.

Sometimes, you might find error 0xc1900201 with a message “We couldn’t update system reserved partition”. This issue commonly occurs when trying to upgrade the Windows 11 or 10 and System Reserved Partition is either full or written by a 3rd party antimalware app.

The error code might appear with update or upgrade failure in Windows 10 20H2, 2004, 21H1, and some of the Windows 11 versions. However, you can repair this System reserve aka SRP problem very easily.

Here is how to fix error code 0xc1900201 We couldn’t update system reserved partition in Windows 11/10 –

The main factor for this problem is the filled System partition, therefore, freeing the space will help you resolve it. You need to delete at least 15 MB from the partition so that the upgradation might end up successfully. Fonts folder existing in the Boot folder is greater than 15 MB and removing this will work in this case. This method includes 3 steps – 1. Determine the SRP partition type (MBR or GPT), 2. Delete in MBR and 3. Delete in GPT.  make sure that you are aware of executing the command

a) Determine whether the system reserve partition is MBR OR GPT –

  1. Press – Winkey.
  2. Type – diskmgmt.msc.
  3. Press – Enter.
  4. Right click on – Disk 0.
  5. Select – Properties.
  6. Click the tab saying – Volumes.
  7. Now, you can see – The Partition Style:  GUID Partition Table (GPT) or Master Boot Record (MBR).

how to fix error code 0xc1900201 We couldn’t update system reserved partition in Windows 10

If the partition is GPT

  1. Click the – Start.
  2. Type in – cmd.
  3. From the right of the result flyout, select – Run as administrator.
  4. Choose – Yes on the User account control prompt.
  5. Copy mountvol y: /s from here, paste into the command prompt (you can use right-click).
  6. Press – Enter.

mountvol y: /s

  1. As a result, this command-line will add the “Y: drive letter” to access the Partition.
  2. Type  Y: and hit Enter in order to switch to the Y drive.
  3. Paste cd EFI\Microsoft\Boot\Fonts and press “Enter”.
  4. Type del *.* to delete font files. The system may ask if you are sure to continue, press Y and then Enter. This will fix error code 0xc1900201 We couldn’t update system reserved partition in Windows 11 and 10.

To fix error 0xc1900201 If the partition is MBR

  1. Open run dialog box by hitting Windows key and R together.
  2. Write – diskmgmt.msc.
  3. Press the – Enter.
  4. Right-click on the partition showing a System Reserve.
  5. Choose – Change Drive Letter and Paths.
  6. Click – Add.
  7. Type Y for the drive letter.
  8. Click the – OK.
  9. Open Command Prompt as Administrator as said in the above method.
  10. Type – Y:
  11. Hit the – enter.
  12. Next, type – cd Boot\Fonts and hit – ‘enter’.
  13. Now, Type takeown /d y /r /f and press Enter. Important – For the command to work correctly put space and period after the “f”.
  14. In order to back up the permission to the drive run the following command –

icacls Y:\* /save %systemdrive%\NTFSp.txt /c /t

0xc1900201

Important: Make sure that you can see ‘successful’ for all files and none is showing failed.

  1. Copy whoami paste in the prompt and press Enter.
  2. Note down the user name.
  3. Run the following command –

icacls . /grant <username you got from whoami>:F /t

Important: This time, don’t put a space between the username and “:F”, or the command won’t work.

  1. Ensure that you are still in Fonts location (Y:\Boot\Fonts).
  2. Type del *.*.
  3. You may be asked – Are you sure to continue, press Y, and then enter.
  4. To bring back the permissions type the following command and hit Enter –

icacls Y:\ /restore %systemdrive%\NTFSp.txt /c /t

  1. You may notice a message hinting that some files failed while processing. This is normal as these files have been deleted subsequent to backing them up.
  2. If the amount of successful files is none, then the command was executed incorrectly; you must have some files successfully processed before continuing.
  3. Adjust the ACL back to System by copying-pasting the following and pressing Enter:

icacls . /grant system:f /t

  1. Set the owner of the drive back to System by typing the underneath command and hitting Enter:

icacls Y: /setowner “SYSTEM” /t /c

  1. Go back to Disk Management and select Action -> Refresh
  2. Ensure that the percentage of free space in the System reserved partition (SRP) is more.
  3. Now, Right-click the System Reserved Partition.
  4. Click the – Change Drive Letter and Paths.
  5. Select the – Y: drive.
  6. Click – Remove.
  7. Choose – OK to solve error code 0xc1900201.

That’s all!!

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

Ошибка обновления Windows 0xc1900201 появляется, когда пользователи пытаются установить последнее обновление, особенно обновление Windows 11 22H2. Ошибка сопровождается сообщением: «Мы не смогли обновить раздел, зарезервированный системой».

В большинстве случаев ошибка возникает, когда раздел, зарезервированный системой (SRP), заполняется. Разделы системного резерва (SRP) — это разделы жесткого диска, в которых хранится загрузочная информация для Windows. В этом руководстве описаны методы устранения неполадок, которые помогли устранить проблему у других пользователей.

1. Измените размер раздела

Эта ошибка возникает, когда раздел системного резерва (SRP) заполняется и в нем нет места для обновления. Вот почему наиболее подходящим методом устранения неполадок является изменение размера раздела.

Мы удалим нечасто используемые папки, чтобы освободить необходимое пространство.

Вот все, что вам нужно сделать:

  1. Откройте программу «Выполнить» и нажмите кнопкуПобеда + Рключи вместе.
  2. Введите diskmgmt.msc в «Выполнить» и нажмитеEnter.
  3. В следующем окне щелкните правой кнопкой мыши диск, содержащий SRP, и выберитеХарактеристикииз контекстного меню.
  4. Перейдите на вкладку «Том» и проверьте стиль вашего раздела. Это будет либо таблица разделов GUID (GPT), либо основная загрузочная запись (MBR).

1-й сценарий: раздел GPT

Если у вас есть раздел GPT, выполните следующие действия:

  1. НажиматьПобедить+рчтобы открыть «Выполнить».
  2. Введите cmd в «Выполнить» и нажмитеCtrl+Сдвиг+Enterчтобы открыть командную строку от имени администратора.
  3. Альтернативно вы можете ввести cmd в области поиска на панели задач и выбратьЗапустить от имени администратора.
  4. НажмитеДав командной строке контроля учетных записей.
  5. Теперь введите следующую команду в командной строке и нажмите Enter, чтобы выполнить ее. При этом вы добавите букву драйвера Y: для доступа к системному разделу.
    mountvol y: /s
  6. Теперь введите Y: и нажмитеEnter.
  7. После этого введите следующую команду, чтобы открыть папку «Шрифты». Это папка, которую мы будем удалять.
    cd EFIMicrosoftBootFonts

    Execute the entered command

  8. Теперь введите del *.*, чтобы удалить файлы шрифтов.

    Delete the fonts folder

  9. Если вас попросят подтвердить действие, введите Y и нажмитеEnter.

Теперь вы можете без проблем попробовать установить целевое обновление.

2-й сценарий: раздел MBR

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

  1. НажиматьПобедить+рчтобы открыть «Выполнить».
  2. Введите diskmgmt.msc в «Выполнить» и нажмитеEnter.
  3. Щелкните правой кнопкой мыши раздел, отмеченный какСервисное обслуживание системы.
  4. ВыбиратьИзменить букву диска и путиа затем нажмитеДобавлять.

    Change the drive letter and its path

  5. Введите Y: в качестве буквы драйвера и нажмитеХОРОШО.

    Enter a drive letter

  6. Теперь введите cmd в область поиска на панели задач и нажмитеЗапустить от имени администратора.
  7. НажмитеДав строке учетной записи пользователя.
  8. Как только вы окажетесь в окне командной строки, введите Y: и нажмитеEnter. Это заставит вас переключиться на этот диск.
  9. Теперь выполните следующую команду, чтобы перейти в папку Fonts:
    cd BootFonts
  10. Далее выполните эту команду:
    takeown /d y /r /f .
  11. Чтобы создать резервную копию разрешения на диск, выполните следующую команду:
    icacls Y:* /save %systemdrive%NTFSp.txt /c /t
  12. Введите whoami и нажмитеEnter. Запишите имя пользователя.
  13. Затем выполните эту команду:
    icacls . /grant <username you got from whoami>:F /t
  14. Введите del *.*, чтобы удалить файлы шрифтов.
  15. Чтобы подтвердить действие, введите Y и нажмите Enter.

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

  1. В командной строке выполните следующую команду. Если успешных файлов нет, значит команда выполнена неправильно; вам необходимо обработать некоторые файлы, прежде чем продолжить.
    icacls Y: /restore %systemdrive%NTFSp.txt /c /t
  2. Выполните следующий код, чтобы вернуть ACL в систему:
    icacls . /grant system:f /t
  3. Используя следующую команду, верните право собственности на диск на систему:
    icacls Y: /setowner ?SYSTEM? /t /c

    Revert drive's ownership

  4. Теперь вернитесь в «Управление дисками» и обновите данные. Это подтвердит, что в SRP наконец-то достаточно свободного места.
  5. Если это так, щелкните правой кнопкой мыши раздел, зарезервированный системой, и выберитеИзменить букву диска и пути.
  6. Нажмите на диск Y: и выберитеУдалять.
  7. Наконец, нажмитеХОРОШОи закройте окно «Управление дисками».

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

2. Выполните сброс или восстановительную установку.

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

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

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

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

Читать дальше

  • Как исправить ошибку Центра обновления Windows 0xc1900201?
  • Исправлено: накопительное обновление Windows 11 не устанавливается и не загружается.
  • Обновление Windows 10 версии 2009 выпущено для выпуска предварительного канала и доступно?
  • Доступно последнее обновление клиентской версии UWP приложения для удаленного рабочего стола Windows 10?

  • Код ошибки 30015 11 при установке office windows 10
  • Код ошибки 2503 как исправить на windows 10
  • Код ошибки 0xc190011f при установке windows 11
  • Код ошибки 0xc004e003 при активации windows 7 максимальная лицензионный ключ
  • Код ошибки 225 windows 10