0xC1900101 — feature update rolls back
A driver stopped the upgrade. The 0xC1900101 family always means a driver problem; the extension code says which phase it died in.
What you see
A feature update or in-place upgrade reaches a percentage, restarts, then reverts with "We couldn't install Windows 10/11" and this code.
What is actually wrong
A third-party driver failed to migrate. The usual culprits are storage controller drivers, older antivirus filter drivers, VPN adapters and vendor management agents.
Codes and articles
Fixes (2)
Find the actual blocker with SetupDiag
Always do this first. Guessing at drivers wastes hours; SetupDiag names the file in most cases.
Download SetupDiag from Microsoft and put it somewhere simple such as C:\temp.
Run it against the rollback logs left by the failed attempt.
C:\temp\SetupDiag.exe /Output:C:\temp\setupdiag.logIt reads $WINDOWS.~BT and the Panther logs and matches them against a set of known failure signatures.
Read the result — look for the rule name and any driver file it names.
Get-Content C:\temp\setupdiag.log | Select-Object -First 60
Remove the blockers and retry from mounted media
SetupDiag named a driver, or the extension code points at the boot phase.
Uninstall third-party antivirus and endpoint agents completely, using the vendor's removal tool rather than Add/Remove Programs.
Filter drivers are the single most common cause of this family. A partial uninstall leaves the filter driver registered.
Unplug everything not needed to boot — external drives, docks, printers, smartcard readers, USB hubs.
Remove any VPN client and its virtual adapter.
List non-Microsoft drivers and note anything storage or security related that predates the machine's last two years.
pnputil /enum-driversMount the ISO for the target build and run setup from it, choosing to keep files and apps.
Mount-DiskImage -ImagePath C:\iso\windows.isoRunning setup from mounted media skips the Windows Update download path entirely, which removes a whole class of failures from the picture.
Get-ComputerInfo -Property OsName, OsBuildNumberRelated faults
Where this stops. This write-up was written and checked by hand. It says what each step changes, how to confirm it worked and how to reverse it, and anything destructive is flagged before you reach it. If it does not match what your machine is doing, search the Support Centre for the exact code or message — and when something needs a person, get in touch.