SOLVED: How to fix Windows activation error code 0x8007007B. Check firmware embedded OEM key and activate Windows digital license using PowerShell
(Get-WmiObject -query 'select * from SoftwareLicensingService').OA3xOriginalProductKey (Get-WmiObject -query 'select * from SoftwareLicensingService').OA3xOriginalProductKeyDescription
If the output is Core OEM the computer has a Windows 10 home firmware embedded key.
Example: Windows 10 Home firmware embedded key
Core OEM:DM is Windows 10 Home
Start - Settings - System - About - Activation
We can't activate Windows on this device as we can't connect to your organization's activation server. Make sure you're connected to your organizations network and try again. Error code 0x8007007B
(Get-WmiObject -query 'select * from SoftwareLicensingService').OA3xOriginalProductKey (Get-WmiObject -query 'select * from SoftwareLicensingService').OA3xOriginalProductKeyDescription
Professional OEM:DM is Windows 10 Pro
Core OEM:DM is Windows 10 Home
Get-CimInstance SoftwareLicensingProduct -Filter "Name like 'Windows%'" | where { $_.PartialProductKey } | select LicenseStatus
When the Windows license is activated properly, the license status will be 1.
If any other value is returned, then there is an issue with license activation.
| Value | Description |
| 0 | Unlicensed |
| 1 | Licensed |
| 2 | OOBGrace |
| 3 | OOTGrace |
| 4 | NonGenuineGrace |
| 5 | Notification |
| 6 | ExtendedGrace |
To fix the Windows activation error, we can run these PowerShell commands to activate the Windows Digital License using the firmware embedded key
$ProductKey = (Get-CimInstance -ClassName SoftwareLicensingService).OA3xOriginalProductKey $Service = get-wmiObject -query 'select * from SoftwareLicensingService' $Service.InstallProductKey($ProductKey) $Service.RefreshLicenseStatus()
You can also use the Windows Activation Troubleshooter to activate a digital license
Start - Settings - System - About - Activation
Troubleshoot
Click Activate Windows
Click Close
Reference:
by Author
Deploy Windows 10/11 Enterprise licenses
https://docs.microsoft.com/en-us/windows/deployment/deploy-enterprise-licenses
Comments 2
There is hardly a single day when I don’t marvel at the consistency you bring to your work. The effort you put into everything you do makes me feel inspired. Keep doing such great work! You can also check 0x8007007b
Thank you! Glad you found the article helpful