Online edition upgrade Windows Server 2012 (R2)

1

I had to find a way to upgrade a server from Windows Server 2012 R2 Standard to Windows Server 2012 R2 Datacenter Edition. A colleague did the installation of the Standard edition instead of the required Datacenter...

So the question was : how to convert a Windows Server Edition from Standard to Datacenter, without having to manipulate offline ?

Ob1lan

Posted 2014-08-07T11:21:34.730

Reputation: 1 596

3Check the current edition DISM /online /Get-CurrentEdition, check if it's upgradeable DISM /online /Get-TargetEditions, and if it is DISM /online /Set-Edition:<edition ID> /ProductKey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /AcceptEula. Two restarts latter you should be good to go. – Brian – 2014-08-07T11:57:44.520

Answers

1

After some researches, I found the solution to my answer. I had to use the DISM command, with this syntax :

dism /online /Set-Edition:ServerDatacenter /productKey:<valid datacenter PK> /AcceptEula

After a reboot, my server was finally a Datacenter Edition.

Hope this helps.

Ob1lan

Posted 2014-08-07T11:21:34.730

Reputation: 1 596

Have you (not) read the comment of Brian? – duDE – 2014-08-07T12:06:48.813

3In fact, I already knew the answer, I tried to share a knowledge, but misread the Self-Answer topic. So the post was locked, and before I could validate my own answer, it appears that Brian wrote a comment. Btw, thanks for the help. – Ob1lan – 2014-08-07T12:10:44.480