Skip to Content
Published on
Takes approximately 1 minute to read
Post History

Convert Windows 2016 Eval to Retail

This post was archived on .

The content may be old and no longer accurate.

Command line, using DISM to convert to retail.

Using your retail key with the ISO's downloaded from Microsoft's "Evaluation Center" should be easy right? You paid for a license so you should be able to just activate a trial... Turns out it's not that simple. You actually need to change your server edition from ServerBlahEvalEdition to whatever edition you have a key for using dism.

Batch file (DOS)
code block
Skip
DISM /Online /Set-Edition:ServerDatacenter /ProductKey:<key for blah>

This command is going to yell at you for not accepting the EULA, so the final command looks like this:

Batch file (DOS)
code block
Skip
DISM /Online /Set-Edition:ServerDatacenter /ProductKey:<key for blah> /AcceptEula

From what I gather the Set-Edition option can be either of the following:

Plain text
code block
Skip
ServerDatacenter
ServerStandard
ServerDatacenterCor
ServerStandardCor
DISM running cleanup during reboot.

The command takes a good 10 minutes to run (looks like it stalls), then asks to reboot to cleanup. Afterwards, you should be activated and ready.

For extra credit, you can activate VM's running on a Datacenter host by using AVMA keys (Automatic Virtual Machine Activation). The commands would look like this:

Batch file (DOS)
code block
Skip
DISM /Online /Set-Edition:ServerDatacenterCor /AcceptEula /ProductKey:TMJ3Y-NTRTM-FJYXT-T22BY-CWG3J
DISM /Online /Set-Edition:ServerStandardCor /AcceptEula /ProductKey:C3RCX-M6NRP-6CXC9-TW2F2-4RHYD

Have Fun!