无法激活Windows Server 2012 R2


11

我在IBM x3650 M4服务器中安装了Windows Server 2012 R2标准评估版。我还连接配置为辅助服务器的域控制器。现在,我购买了批量许可证密钥。但是当我用钥匙激活时,我收到错误消息,该钥匙无法用于激活此版本的Windows


2
这个问题最好在供应商的支持下进行
MichelZ 2014年

2
实际上,这是一个纯粹的“更改SKU或重新安装”技术问题,此处不涉及任何法律问题。
TomTom 2014年

Answers:


34

尝试使用SKUUPGRADE-评估问题因此无法激活。

要确定已安装的版本,请运行:

DISM /online /Get-CurrentEdition

要检查可能的目标版本,请运行:

DISM /online /Get-TargetEditions

最后,要启动升级,请运行:

DISM /online /Set-Edition:<edition> /ProductKey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX

它是如何工作的。查看是否可以从评估更改为标准。

但是您可能不走运-然后您可能需要重新安装。

但是,如果它可行,那么您可能会很幸运-如果VLK不需要完全不同的版本。

我们通常会避免为生产安装eval版本,这是有原因的。

请所有投票者注意:这不是法律建议-张贴者询问技术执行问题,董事会认为这是可以的。从技术上讲,他不是问许可(条款等-法律问题,而且非常复杂),而是询问如何激活他的密钥(技术问题),我们在这里进行处理。哎呀,窗户的某些部分在技术方面有很大的指导...


1
将产品密钥从评估更改为标准应该可以。cscript slmgr.vbs / ipk是另一种选择。
格雷格·阿斯克

15
我必须添加/ AcceptEula参数才能使其正常工作。否则,效果很好。谢谢。

2
这应该标记为正确答案。就点而言,工作完美。
ItsGC 2015年

在使用产品的“枚举”值(例如StandardEdition)并添加/ AcceptEula之后,这对我有用。非常好。
Newclique

0

Microsoft Windows [版本6.3.9600](c)2013 Microsoft Corporation。版权所有。

C:\ Users \ MrCMD> DISM / online / Get-CurrentEdition

Deployment Image Servicing and Management tool
Version: 6.3.9600.17031

Image Version: 6.3.9600.17031

Current edition is:

Current Edition : ServerStandardEval

The operation completed successfully.

C:\ Users \ MrCMD> DISM / online / Get-TargetEditions

Deployment Image Servicing and Management tool
Version: 6.3.9600.17031

Image Version: 6.3.9600.17031

Editions that can be upgraded to:

Target Edition : ServerStandard
Target Edition : ServerDatacenter

The operation completed successfully.

C:\ Users \ MrCMD> DISM / online / Set-Edition:ServerStandard / ProductKey:D2N9P-3P6X9-2R39C-7RTCD-MDVJX / AcceptEula

Deployment Image Servicing and Management tool
Version: 6.3.9600.17031

Image Version: 6.3.9600.17031

Starting to update components...
Starting to install product key...
Finished installing product key.

Removing package Microsoft-Windows-ServerStandardEvalEdition~31bf3856ad364e35~amd64~~6.3.9600.16384
[==========================100.0%==========================]
Finished updating components.

Starting to apply edition-specific settings...
Finished applying edition-specific settings.

The operation completed successfully.
Restart Windows to complete this operation.
Do you want to restart the computer now? (Y/N)

在“敲击Y”并重新启动计算机后,我得到了“ Windows已激活”。多么强大的命令行,伙计。:)

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.