Windows is not activated after update — how to fix
After a major system update, Windows may display a message stating that the system is not activated, even though it was working properly before. Most often, this does not immediately mean the loss of the license. Usually, the problem is related to re-verifying the key, linking the digital license to the Microsoft account, or errors in system services after the update.
What does this error mean
In simple words: Windows after the update cannot confirm that your system copy has a valid license. This may be due to a temporary error, a change in the hardware identifier, damage to system files, or an incorrect product key.
The symptoms are usually similar:
- in Settings > System > Activation a message about lack of activation appears,
- a watermark may appear on the desktop,
- some personalization settings may be blocked,
- the system may report an activation error code.
When it occurs
The problem most often occurs:
- after a major feature update of Windows 10 or Windows 11,
- when restoring the system from an image or backup,
- after replacing the main board, disk, or other key components,
- after changing the system edition, for example from Home to Pro,
- after reinstalling the system without logging in to the correct Microsoft account,
- in a corporate environment after problems with KMS or MAK activation.
Causes
The most common known causes are:
- the digital license is not linked to the Microsoft account,
- the system was installed in a different edition than the one covered by the license,
- the update damaged the components responsible for activation,
- Windows activation services did not start properly,
- the product key was overwritten, deleted, or rejected,
- Microsoft's activation servers are temporarily not responding,
- a hardware change caused the system to recognize the device as a new computer,
- a volume or corporate key is being used, which requires connection to the organization,
- system files are damaged,
- the system image was modified or came from an untrusted source.
Step-by-Step Solution
1. Check Activation Status
Run Command Prompt as Administrator and type:
slmgr.vbs /dli
slmgr.vbs /dlv
slmgr.vbs /xpr
These commands will show basic license information, activation details, and whether the activation is permanent.
2. Force Reactivation
If the system has a valid key, try activating it again:
slmgr.vbs /ato
If you have your own product key and want to enter it again, use:
slmgr.vbs /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
slmgr.vbs /ato
Replace the string XXXXX-XXXXX-XXXXX-XXXXX-XXXXX with your key.
3. Repair System Files
After an update, the problem may be due to damaged files. In the same CMD window, run:
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow
First, DISM checks and repairs the system image, and then sfc repairs Windows files. After completion, restart your computer and run again:
slmgr.vbs /ato
4. Check Licensing Service
If activation still doesn't work, check the software protection service:
sc query sppsvc
net start sppsvc
If the service was stopped, starting it may immediately resolve the issue.
5. Check Windows Edition
Ensure the installed Windows edition matches the license. A common case is a license for Home, but after an update or reinstallation, Pro is running. Simply re-entering the key may not help if the edition is incompatible.
Alternative Repair Methods
If the basic method didn't help, try the following approaches.
Activation Troubleshooter
Go to Settings > System > Activation and run the built-in troubleshooter. This especially helps when a digital license was previously linked to a Microsoft account.
Re-login to Microsoft Account
If the device had digital activation, log out and log back into the same Microsoft account associated with the license. Then, reopen the activation section.
Activation in a Corporate Environment
In companies, a KMS server or an Office package activated separately might be used. In such cases, administrators can also use ospp.vbs for Office products. Example commands:
cscript ospp.vbs /dstatus
cscript ospp.vbs /act
For Windows itself, slmgr.vbs remains the standard, but in corporate environments, both mechanisms can be confusing.
Reactivation After Hardware Change
If hardware components were replaced during the update, use the I recently changed hardware in this device option in the activation tool. This works only if the license was previously linked to a Microsoft account.
Installing the Correct Windows Edition
If the system has the wrong edition, sometimes the only permanent solution is to install the correct version of Windows compatible with the license type.
When to Contact Support
Contact Microsoft technical support when:
- you have a legitimate key, but the system keeps rejecting it,
- after all steps, activation still doesn't work,
- you replaced the motherboard and the license is no longer recognized,
- you receive a message about a blocked or already used key,
- the computer was purchased with pre-installed Windows and you don't know the key,
- the device operates in an organization and you're unsure what type of license was used.
Contact number: 00 800 121 1654.
For further assistance, you can also reach out to [email protected].
Related Errors
This problem is often accompanied by the following error codes:
0xC004F213— product key not found,0xC004F034— unable to activate the system using the provided key,0x803F7001— the system does not detect a valid license,0xC004C003— the key has been blocked or rejected,0xC004FC03— connection issue during activation,0x8007232B— DNS error, common during corporate KMS activation.
Summary
The activation error message after an update can usually be resolved without reinstalling the system. First, check the license status using the slmgr.vbs command, then run DISM and sfc, and finally force activation. If the problem concerns a digital license, the Microsoft account and system edition compatibility will be crucial. If this does not help, it is best to contact Microsoft support directly.