<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ISO Archives - WardNet</title>
	<atom:link href="https://www.wardnet.co.uk/tag/iso/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.wardnet.co.uk/tag/iso/</link>
	<description>Infrastructure, ERP and General Technology Blog</description>
	<lastBuildDate>Sun, 28 Jan 2018 11:40:27 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://i0.wp.com/www.wardnet.co.uk/wp-content/uploads/2026/01/wp-1767387074640.jpg?fit=32%2C32&#038;ssl=1</url>
	<title>ISO Archives - WardNet</title>
	<link>https://www.wardnet.co.uk/tag/iso/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">63479081</site>	<item>
		<title>Tip of the Week 3 &#8211; Converting Server Eval to full version</title>
		<link>https://www.wardnet.co.uk/tip-of-the-week-3-converting-server-eval-to-full-version/</link>
		
		<dc:creator><![CDATA[Jonathan Ward]]></dc:creator>
		<pubDate>Mon, 29 Jan 2018 09:30:44 +0000</pubDate>
				<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[datacenter]]></category>
		<category><![CDATA[DISM]]></category>
		<category><![CDATA[Eval]]></category>
		<category><![CDATA[ISO]]></category>
		<category><![CDATA[KMS]]></category>
		<category><![CDATA[licensing]]></category>
		<category><![CDATA[Server Standard]]></category>
		<category><![CDATA[ServerEval]]></category>
		<guid isPermaLink="false">https://www.wardnet.co.uk/?p=489</guid>

					<description><![CDATA[<p>NOTE: You will require a valid Windows Server product key for this to work, this is in no way intended</p>
<p><a href="https://www.wardnet.co.uk/tip-of-the-week-3-converting-server-eval-to-full-version/">Tip of the Week 3 &#8211; Converting Server Eval to full version</a></p>
]]></description>
										<content:encoded><![CDATA[<h6>NOTE: You will require a valid Windows Server product key for this to work, this is in no way intended as a workaround to legitimate licensing.</h6>
<p>Sometimes when just messing around with an idea or trying to prove a concept out you may find yourself quickly downloading an ISO from Microsoft for whatever OS version you&#8217;re testing on. Perhaps you haven&#8217;t got access to your usual ISO library or forgot credentials for your Volume Licensing portal etc.</p>
<p>The only issue with the TechNet downloads is that they are Evaluation editions, this means that within a certain number of days (usually 60 or 180 depending on version) you will not be licensed, activated or legit… slight problem here is that within 180 days you&#8217;ve probably built your best dev/test platform in years and don&#8217;t want to lose it, in fact you want to move it to your production servers, keeping it and maintaining it for eternity. Do you build a new VM with the proper ISO and Product key?</p>
<p>The answer is no, just upgrade your edition.</p>
<p>A while ago now, Microsoft introduced DISM (Deployment Image Servicing and Management tool) &#8211; a handy suite of command line tools for managing such situations. So how do I convert from evaluation to Server Standard or Datacenter editions, and what versions of Windows Server does this work with?</p>
<ol>
<li><span style="text-decoration: line-through;">Open Command Prompt as Administrator</span></li>
<li>Open PowerShell as Administrator &#8211; it&#8217;s the 21st Century</li>
<li>
<div>Run the following command:</div>
<p><span style="font-family: Consolas;">dism /Online /Get-CurrentEdition<br />
</span></p>
<p><img data-recalc-dims="1" decoding="async" src="https://i0.wp.com/www.wardnet.co.uk/wp-content/uploads/2018/01/012818_1127_TipoftheWee1.png?w=810&#038;ssl=1" alt=""></li>
<li>The image above shows I&#8217;m running Version 10 (Server 2016) and I&#8217;m on a Server Standard license, therefore not Eval. However if you were on an Evaluation license it would say ServerStandardEval</li>
<li>
<div>In order to upgrade the license to a full version, or to go from Server Standard to Datacenter edition you can run the following:</div>
<p><span style="font-family: Consolas;">DISM /online /Set-Edition:&lt;edition ID&gt; /ProductKey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /AcceptEula<br />
</span></p>
<p>The &lt;edition ID&gt; will be either ServerStandard or ServerDatacenter</li>
<li>The ProductKey is the bit unique to you/ your company, however, if you use KMS keys you can obtain these from the following page: <a href="https://docs.microsoft.com/en-us/windows-server/get-started/kmsclientkeys">https://docs.microsoft.com/en-us/windows-server/get-started/kmsclientkeys</a> &#8211; I won&#8217;t go into the KMS vs. MAK conversation here but feel free to Google it to work out which you have/need.</li>
<li>
<div>Here&#8217;s an example I ran using a KMS key:</div>
<p><img data-recalc-dims="1" decoding="async" src="https://i0.wp.com/www.wardnet.co.uk/wp-content/uploads/2018/01/012818_1127_TipoftheWee2.png?w=810&#038;ssl=1" alt=""></p>
<p>Note it removes the &#8220;package&#8221; of the one installed and replaces it with the one you&#8217;re putting in, A reboot will also be necessary.</li>
</ol>
<p>For more info regarding DISM go here: <a href="https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/what-is-dism">https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/what-is-dism</a></p>
<p>DISM has been around since Windows 7/ Server 2008 but it&#8217;s been most useful since 2012R2 onwards, I will be posting some additional DISM tips in the next post!</p>
<p style="margin-left: 27pt;">&nbsp;</p>
<p><a href="https://www.wardnet.co.uk/tip-of-the-week-3-converting-server-eval-to-full-version/">Tip of the Week 3 &#8211; Converting Server Eval to full version</a></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">489</post-id>	</item>
	</channel>
</rss>
