Location>code7788 >text

Source and conversion of Windows Server Evaluation Edition/Official Edition/Data Center Edition

Popularity:373 ℃/2025-03-25 11:29:33

Evaluation Edition:
The version downloaded from the Microsoft Evaluation Center is equivalent to the trial version provided by Microsoft and can be used for free for a period of time. However, this version cannot be activated using KMS authorization or MAS permanent authorization.

Official version/Data Center version:
The version downloaded from the Microsoft License Center is marked with GLVK, which can be installed and supported directly with KMS GVLK license or MAS permanent license, etc.

Evaluation version conversion official version/data center version:
The evaluation version can be converted by entering the official version or data center version of GLVK, and after conversion, it can be activated using KMS authorization or MAS permanent authorization; in other words, it cannot be activated without conversion.

Windows Server Evaluation Edition (Evaluation) can be converted to a formal version (Standard or Datacenter) by activation keys.
I personally recommend using Change_Windows_Edition.cmd in the MAS tool to convert, which will automatically identify the current version and whether it can be converted. There is no need to look for GLVK, just press the numeric keys to convert.
MAS:/
The manual conversion process is as follows:

Step 1: Check the current version

  1. Open as administratorPowerShellorCommand Prompt (CMD)
  2. Enter the following command to view the current version:
    DISM /online /Get-CurrentEdition
    
    You'll see something likeServerStandardEvalorServerDatacenterEvaloutput, which means that it is currently an evaluation version.

Step 2: Determine the upgradeable version

Enter the following command to view the convertible version:

DISM /online /Get-TargetEditions

Here are the target versions that can be converted, for example:

Target Edition : ServerStandard
Target Edition : ServerDatacenter

Step 3: Enter the key to convert the version

Use the following command to convert to the official version (please select the target version as needed):

DISM /online /Set-Edition:ServerStandard /ProductKey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /AcceptEula

or

DISM /online /Set-Edition:ServerDatacenter /ProductKey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /AcceptEula

(Please changeXXXXX-XXXXX-XXXXX-XXXXX-XXXXXReplace with yoursWindows Server GLVK, please refer to /zh-cn/windows-server/get-started/kms-client-activation-keys?tabs=server2025%2Cwindows1110ltsc%2Cversion1803%2Cwindows81)

Step 4: Restart the server

After the command is executed successfully, the system will promptNeed to restart. You can enter the following command to restart immediately:

shutdown /r /t 0

After the server restarts, the Windows Server Evaluation Edition will be converted to the official version or data center version.