Some keys are also applicable to Server.
P.S.Thank Matthew Starkie for publishing!
Some keys are also applicable to Server.
P.S.Thank Matthew Starkie for publishing!
As you know, there are limitations on the available memory depending on the version of the operating system . These limitations may be caused by BIOS, hardware or instruction set architectures (x86,x64) too. Sometimes really hard to predict and troubleshoot them . Everything looks good, but doesn’t work. Let’s analyze basic steps that I have used to solve issues in different situations.
– Check memory limits for supported Windows releases
http://msdn.microsoft.com/en-us/library/windows/desktop/aa366778(v=vs.85).aspx


– Sometimes the reason is hardware. I had a problem on other Intel SR1670HV server system “DIMM A1 and DIMM A2 are disabled by BIOS”. Unfortunately, it’s mainboard’s bug (upgrading firmware and replacing DIMMs don’t resolve the issue)

Run Powershell. Use DISM /online /Get-CurrentEdition to get your edition

Then paste DISM /online /Get-TargetEditions to view possible target editions

Finally, to initiate an upgrade, run:
DISM /online /Set-Edition:<edition ID> /ProductKey:___
For example, I have an Enterprise version and want to upgrade to Datacenter.
Important: You have to use KMS key before activation with own key. Get KmS key using this link http://technet.microsoft.com/en-us/library/ff793421.aspx
DISM /online /Set-Edition:ServerDatacenter /ProductKey:74YFP-3QFB3-KQT8W-PMXWJ-7M648
DISM will reboot server twice. Very strange memory limit has gone away.
Notice: After the reboot you should change the product key and activate system again.