Situatie
This means the product key you’re using has been blocked by Microsoft — usually because it’s been used on too many devices, flagged as invalid, or is a volume license key being used incorrectly.
Solutie
Fix 1 – Run activation
Settings → System → Activation
→ Troubleshoot (or Activate Now)
→ Follow the prompts
Fix 2 — Re-enter Product Key
Settings → System → Activation
→ Change product key
→ Enter your 25-digit key again
Or via command line:
cmd
slmgr /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
slmgr /ato
Fix 3 — Check Activation Status
cmd
slmgr /xpr
slmgr /dli
slmgr /dlv
This shows:
- Current license status
- Key channel (Retail, OEM, Volume)
- Expiry / grace period
Fix 4 — Remove and Re-add Key
cmd
# Remove current key
slmgr /upk
# Clear from registry
slmgr /cpky
# Re-enter key
slmgr /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
# Activate
slmgr /ato
```
---
## Fix 5 — Phone Activation
If online activation fails, try phone activation:
```
slui 4
```
This opens the phone activation wizard — follow the automated system to get a confirmation ID.
---
## Fix 6 — Link License to Microsoft Account
If it was a digital license:
```
Settings → System → Activation
→ Add a Microsoft account
→ Sign in with the account used when Windows was first activated
Fix 7 — For Volume License / Enterprise
If on a domain or enterprise environment:
cmd
# Point to KMS server
slmgr /skms your-kms-server.domain.com
# Activate against KMS
slmgr /ato
# Check KMS status
slmgr /dli
```
Contact your IT admin — the KMS server or MAK key may need attention.
---
## Fix 8 — Hardware Change (License Linked to Old Hardware)
If you replaced the motherboard or did major hardware changes:
- Microsoft considers this a new device
- You need to reactivate via **Microsoft Support**
```
Settings → System → Activation → Troubleshoot
→ "I changed hardware on this device recently"
→ Sign in with Microsoft account linked to license
Common slmgr Commands Reference
| Command | Function |
|---|---|
slmgr /xpr |
Check activation expiry |
slmgr /dli |
Display license info |
slmgr /dlv |
Detailed license info |
slmgr /ato |
Activate Windows |
slmgr /ipk KEY |
Install product key |
slmgr /upk |
Uninstall product key |
slmgr /cpky |
Clear key from registry |
slmgr /rearm |
Reset activation timer |
slui 4 |
Phone activation |
If Nothing Works
- Contact Microsoft Support directly: support.microsoft.com
- Provide proof of purchase
- If key was bought from a third-party site (eBay, G2A, cheap key sites) — it may be permanently blocked and you’ll need to buy a legitimate key
- Official keys: microsoft.com/en-us/store
Leave A Comment?