Windows Server 2025 / 2022 / 2019 / 2016 Product Keys

Need KMS client setup keys (GVLKs) to activate Windows Server in your enterprise or home lab? Below is the complete, verified list of KMS client setup keys for Windows Server 2025, 2022, 2019, and 2016 — covering Standard, Datacenter, Datacenter: Azure Edition, and Essentials editions.
📌 What are KMS Client Setup Keys (GVLKs)? Generic Volume License Keys (GVLKs) are publicly documented by Microsoft for volume licensing environments. When you install Windows Server from volume licensing media, these keys configure the server for KMS (Key Management Service) activation against your organization’s KMS host. They are NOT pirated keys — Microsoft publishes them officially at:

learn.microsoft.com/windows-server/get-started/kms-client-activation-keys
01 KMS Client Setup Keys by Version
🖥 Windows Server 2025 Latest LTSC

Windows Server 2025 is the latest Long-Term Servicing Channel (LTSC) release, featuring hotpatching support, advanced Active Directory improvements, and tighter Azure hybrid integration. Use these GVLKs for KMS activation in volume licensing deployments.

EditionKMS Client Setup Key (GVLK)
Windows Server 2025 Standard
TVRH6-WHNXV-R9WG3-9XRFY-MY832
Windows Server 2025 Datacenter
D764K-2NDRG-47T6Q-P8T8W-YP6DF
Windows Server 2025 Datacenter: Azure Edition
XW7K9-N9MYT-GJCMG-3GXF8-2849D
📋 Note Windows Server 2025 Essentials uses a retail product key model and does NOT have a public GVLK for KMS activation. Activate Essentials with the product key provided at purchase. Contact your Microsoft licensing partner for assistance.
🖥 Windows Server 2022 Widely Deployed

Windows Server 2022 introduced secured-core server capabilities, TLS 1.3 by default, and Azure Arc integration. It remains widely deployed in production environments worldwide and is a solid choice for organizations not yet ready to migrate to Server 2025.

EditionKMS Client Setup Key (GVLK)
Windows Server 2022 Standard
VDYBN-27WPP-V4HQT-9VMD4-VMK7H
Windows Server 2022 Datacenter
WX4NM-KYWYW-QJJR4-XV3QB-6VM33
Windows Server 2022 Datacenter: Azure Edition
NTBV8-9K7Q8-V27C6-M2BTV-KHMXV
🖥 Windows Server 2019 Mainstream Support

Windows Server 2019 remains in mainstream support and is one of the most common server OS versions in enterprise data centers globally. These are the official KMS client keys for all three editions.

EditionKMS Client Setup Key (GVLK)
Windows Server 2019 Standard
N69G4-B89J2-4G8F4-WWYCC-J464C
Windows Server 2019 Datacenter
WMDGN-G9PQG-XVVXX-R3X43-63DFG
Windows Server 2019 Essentials
WVDHN-86M7X-466P6-VHXV7-YY726
🖥 Windows Server 2016 Extended Support — EOL Jan 2027

Windows Server 2016 is in extended support until January 12, 2027 — security patches only, no new features. If you’re still running Server 2016, now is the time to plan your migration to Server 2025 or 2022.

EditionKMS Client Setup Key (GVLK)
Windows Server 2016 Standard
WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY
Windows Server 2016 Datacenter
CB7KF-BWN84-R7R2Y-793K2-8XDDG
Windows Server 2016 Essentials
JCKRF-N37P4-C2D82-9YXRT-4M63B
02 How to Activate Windows Server with KMS

There are four primary methods to activate Windows Server using KMS client setup keys. Choose the method that best fits your deployment scenario.

1
Install Key During Setup

When installing Windows Server from volume licensing media (ISO), the installer prompts for a product key. Enter the appropriate GVLK from the tables above. The server will automatically attempt KMS activation once it connects to your network and discovers a KMS host via DNS SRV auto-discovery.

2
Install Key via Command Line (After Installation)

Open an elevated Command Prompt or PowerShell on the server and run:

CMD / PowerShell
# Install the product key (replace with your edition GVLK)
slmgr /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX

# Trigger activation against the KMS host
slmgr /ato

The /ipk command installs the product key. The /ato command triggers activation against your KMS server.

3
Set KMS Server Manually

If the server cannot auto-discover the KMS host via DNS SRV records, point it manually:

CMD / PowerShell
# Manually point to your KMS host
slmgr /skms your-kms-server.domain.com

# Trigger activation
slmgr /ato

# Verify full license details
slmgr /dlv

The slmgr /dlv command displays the KMS server name, activation status, remaining grace period, and next renewal timestamp — useful for troubleshooting.

4
PowerShell Bulk Activation (Multiple Servers)

For scripted or remote activation across multiple servers in your environment:

PowerShell
# Bulk activate via PowerShell remoting
$servers = @("WS2025-DC01", "WIN11-CLIENT01", "WIN11-CLIENT02")

foreach ($srv in $servers) {
    Invoke-Command -ComputerName $srv -ScriptBlock {
        $key = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"
        cscript //nologo C:\Windows\System32\slmgr.vbs /ipk $key
        cscript //nologo C:\Windows\System32\slmgr.vbs /ato
    }
}
📋 Important KMS client keys require a KMS host on your network with a valid KMS host key (CSVLK). The KMS host must meet minimum activation thresholds — at least 5 unique server activation requests within 30 days. For environments with fewer than 5 servers, use MAK (Multiple Activation Key) or Active Directory-Based Activation (ADBA).
03 Edition Comparison — Standard vs Datacenter vs Essentials

Choosing the right Windows Server edition depends on your virtualization density, workload requirements, compliance needs, and budget.

FeatureStandardDatacenterEssentials
License ModelCore-based (16-core min.)Core-based (16-core min.)Server-based (1 per server)
Virtualization RightsUp to 2 VMsUnlimited VMsNot for virt. host
Max RAM24 TB24 TB64 GB
Max UsersUnlimited (with CALs)Unlimited (with CALs)25 users / 50 devices
Storage Spaces Direct✗✓✗
SDN Support✗✓✗
Shielded VMs✗✓✗
Hotpatching (2025)✗✓ (Azure Arc)✗
Best ForPhysical servers, light virt.Heavy virtualization, HCISmall biz (≤25 users)
Approx. Cost$1,069 (16-core)$6,155 (16-core)$501 (per server)
04 Common Activation Error Codes & Fixes

If Windows Server activation fails, these are the most common error codes and how to resolve each one quickly:

Error CodeWhat It MeansHow to Fix
0xC004F074KMS server not foundCheck DNS for _vlmcs._tcp SRV record. Run: slmgr /skms kms-server.domain.com then slmgr /ato. Verify port 1688 is open.
0xC004F038KMS host count insufficientNeed 5+ unique server activations within 30 days. Use MAK or ADBA for smaller environments.
0xC004C003Product key blockedContact Microsoft Volume Licensing support or use a different MAK key from the VLSC.
0xC004F069GVLK/edition mismatchRun: DISM /online /Get-CurrentEdition to verify. Reinstall correct GVLK: slmgr /ipk <key>
0x8007232BDNS SRV record missingCreate _vlmcs._tcp SRV record on port 1688, or: slmgr /skms your-kms-host.domain.com
0xC004F056Edition mismatch on activationUse: DISM /online /Set-Edition:ServerDatacenter /ProductKey:XXXXX /AcceptEula
0xC004E015License expired or corruptslmgr /upk then slmgr /ipk <key> then slmgr /ato. Rebuild token store if persistent.
0xC004F042Activation count below thresholdRe-activate machines or switch to AD-Based Activation (no threshold required).
💡 Pro Tip: Quick Activation Audit Run slmgr /dlv on any server to see full activation status — KMS host, activation count, license state, and renewal time. Use PowerShell remoting to audit activation status across your entire fleet simultaneously.
05 Where to Buy Genuine Windows Server Licenses

Always purchase Windows Server licenses through legitimate channels. Using pirated or illegitimate keys violates Microsoft licensing terms and exposes your organization to legal and security risks.

Microsoft Store
Direct purchase at retail pricing. Includes Windows Server 2025 Standard and Datacenter with full Microsoft support.
Retail
Volume Licensing (EA/MPSA/CSP)
Best for organizations with multiple servers. Enterprise Agreements, MPSA, and CSP programs offer significant cost savings at scale.
Enterprise
OEM Licensing
Windows Server licenses bundled with hardware from Dell, HPE, Lenovo, etc. Most affordable per-server option, but locked to that specific physical hardware.
Hardware Bundle
Authorized Partners (CSP)
Authorized Microsoft CSPs can provide volume licensing at partner pricing, along with deployment, migration, and managed services support.
Partner
06 Frequently Asked Questions
Are these Windows Server product keys legal?
Yes. These are KMS client setup keys (GVLKs) publicly documented by Microsoft for volume licensing environments. Microsoft publishes them in their official documentation. They are intended for enterprise KMS activation in volume licensing deployments — not for piracy or retail activation.
Do I need a KMS server to use these keys?
Yes. GVLKs require a KMS host server running on your network with a valid KMS host key (CSVLK) and must meet the minimum threshold of 5 servers. Without a KMS host, these keys will install but will NOT activate Windows. For smaller environments, use MAK keys or Active Directory-Based Activation (ADBA).
What is the difference between KMS, MAK, and ADBA?
KMS: Uses GVLKs and a local KMS host. Activations renew every 180 days. Best for 5+ servers.

MAK (Multiple Activation Key): Activates directly with Microsoft’s servers — limited activation count per key. Best for small or air-gapped environments.

ADBA (Active Directory-Based Activation): Uses AD DS to activate domain-joined machines automatically. No minimum threshold. Best for domain environments on Server 2012 R2 or later.
Can I upgrade from Standard to Datacenter without reinstalling?
Yes. Use DISM for an in-place edition upgrade: DISM /online /Set-Edition:ServerDatacenter /ProductKey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /AcceptEula. The server restarts and upgrades the edition while preserving all roles, features, and data.
How often does KMS activation renew?
KMS-activated servers renew every 180 days (6 months) automatically, attempting renewal every 7 days. If the KMS host is unreachable for 180 days, a 30-day grace period begins before deactivation — giving you 210 days total before any operational impact.
Do I need Client Access Licenses (CALs)?
For Standard and Datacenter editions, yes — every user or device accessing the server requires a User CAL or Device CAL (purchased separately). Essentials does NOT require CALs but is limited to 25 users and 50 devices maximum.
What is Datacenter: Azure Edition?
A special variant running exclusively on Azure or Azure Stack HCI. Includes SMB over QUIC (VPN-less file access), hotpatching (apply updates without rebooting), and Azure extended networking features. Available through your Azure subscription — no separate purchase required.
Is Windows Server 2016 still supported?
Windows Server 2016 is in extended support until January 12, 2027 (security patches only). Plan your migration to Server 2025 or 2022 before end of support to avoid running unsupported infrastructure.
Can I use these keys for Azure VMs?
Azure VMs activate automatically via Azure’s built-in KMS (kms.core.windows.net:1688) — no manual key entry needed. If an Azure VM has activation issues, verify it has outbound TCP 1688 access to kms.core.windows.net and that no NSG rule is blocking that traffic.
Disclaimer: vmorecloud.com does not promote or endorse software piracy. All product keys listed on this page are publicly available KMS client setup keys (GVLKs) documented by Microsoft for enterprise volume licensing activation. For commercial deployment, always purchase genuine licenses from Microsoft or an authorized Microsoft licensing partner.

Leave a Reply

Your email address will not be published. Required fields are marked *