Windows  ·  low  ·  Windows Update & servicing

0xC1900208 — an incompatible application is blocking the upgrade

Setup's compatibility scan found something it will not upgrade past — usually an old antivirus, a disk encryption product, or a driver-level utility.

What you see

A feature update refuses to start, or Setup stops at the compatibility screen with 0xC1900208. Nothing is broken; setup is declining to proceed.

What is actually wrong

A hard compatibility block. Setup keeps a list, and the scan result names the application, but the Windows Update UI does not show you the name.

Codes and articles

0xC1900208C19002080x4000C0xC1900204

The fix

Read the compatibility report and clear the blocker
Elevated PowerShell45 minutesmedium riskreversible

The upgrade will not start. Find the blocker before uninstalling anything on suspicion.

  1. Run the compatibility scan on its own from mounted media — it writes a report without attempting the upgrade.

    Command Prompt
    D:\setup.exe /Auto Upgrade /Compat ScanOnly /MigrateDrivers All /DynamicUpdate Disable /copylogs C:\temp\compat

    ScanOnly is the whole point: it produces the same verdict as a real attempt in a few minutes and cannot leave the machine half-upgraded.

  2. Read the result. The blocker is named in the setup logs it copied out.

    PowerShell
    Select-String -Path C:\temp\compat\*.xml, C:\temp\compat\*\*.log -Pattern 'BlockingApplication|CompatBlock|HardBlock' | Select-Object -First 20
  3. Also check the panther log, which records the same decision in plain text.

    PowerShell
    Select-String -Path C:\`$WINDOWS.~BT\Sources\Panther\setupact.log -Pattern 'CONX|Block' | Select-Object -Last 30
  4. Uninstall the named application with the vendor's own removal tool. For disk encryption, decrypt the volume first — do not simply uninstall it.

    Removing an encryption driver while the volume is still encrypted leaves data that nothing on the machine can read.

  5. Retry the upgrade from mounted media rather than Windows Update.

Confirm it workedA second ScanOnly pass reports no blocking applications.
If you need to undo itReinstall the application after the upgrade if it has a compatible version.

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.