<?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>Windows 11 | KC's Blog</title>
	<atom:link href="https://www.kjctech.net/tag/windows-11/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.kjctech.net</link>
	<description></description>
	<lastBuildDate>Wed, 13 Mar 2024 05:34:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/12/cropped-KC-Logo.png?fit=32%2C32&#038;ssl=1</url>
	<title>Windows 11 | KC's Blog</title>
	<link>https://www.kjctech.net</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">24634607</site>	<item>
		<title>MDT &#8211; In-place Upgrade to Windows 11</title>
		<link>https://www.kjctech.net/mdt-in-place-upgrade-to-windows-11/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mdt-in-place-upgrade-to-windows-11</link>
					<comments>https://www.kjctech.net/mdt-in-place-upgrade-to-windows-11/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Wed, 13 Mar 2024 05:34:36 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MDT]]></category>
		<category><![CDATA[Windows 11]]></category>
		<guid isPermaLink="false">https://www.kjctech.net/?p=5139</guid>

					<description><![CDATA[<p>Fresh install Windows 11 via MDT goes quite smoothly, whether the hardware meets the minimum requirements or not, but the in-place upgrade from Windows 10 to Windows 11 usually runs into two different issues. Installation failed with error code 0xC190010E This indicates that the setup.exe needs the /eula accept parameter to accept the license agreement. The fix is quite simple, [&#8230;]</p>
The post <a href="https://www.kjctech.net/mdt-in-place-upgrade-to-windows-11/">MDT – In-place Upgrade to Windows 11</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>Fresh install Windows 11 via MDT goes quite smoothly, whether the hardware meets the minimum requirements or not, but the in-place upgrade from Windows 10 to Windows 11 usually runs into two different issues.</p>



<h3 class="wp-block-heading">Installation failed with error code 0xC190010E</h3>



<p>This indicates that the setup.exe needs the <strong>/eula accept</strong> parameter to accept the license agreement.</p>



<p>The fix is quite simple, add a <strong>Set Task Sequence Variable</strong> task sequence with the following variable and value in the <strong>Preparetion</strong> stage.</p>



<pre class="wp-block-preformatted">Task Sequence Variable: WindowsUpgradeAdditionalOptions
Value: /eula accept</pre>



<figure class="wp-block-image size-large"><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image.png?ssl=1" data-rel="lightbox-image-0" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" fetchpriority="high" decoding="async" width="600" height="297" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image.png?resize=600%2C297&#038;ssl=1" alt="" class="wp-image-5140" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image.png?resize=600%2C297&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image.png?resize=450%2C223&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image.png?resize=250%2C124&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image.png?resize=700%2C346&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image.png?resize=520%2C257&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image.png?resize=360%2C178&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image.png?resize=100%2C49&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image.png?w=768&amp;ssl=1 768w" sizes="(max-width: 600px) 100vw, 600px" /></a></figure>



<h3 class="wp-block-heading">Installation failed with error code 0xC190010E</h3>



<p>This indicates that the hardware doesn&#8217;t meet the minimum requirement of Windows 11, whether it&#8217;s an early version of TPM or an older generation of CPU processor.</p>



<p>The fix is also simple, to add a registry key named <em>AllowUpgradesWithUnsupportedTPMOrCPU</em> in <em>HKLM\SYSTEM\Setup\MoSetup</em> before the actual upgrade to tell the installation process to bypass the hardware requirement check.</p>



<p>To accomplish that, add a <strong>Run Command Line</strong> to add this registry key in the Preparation stage.</p>



<pre class="wp-block-preformatted">reg.exe add "HKEY_LOCAL_MACHINE\SYSTEM\Setup\MoSetup" /v AllowUpgradesWithUnsupportedTPMOrCPU /t REG_DWORD /d 1 /f</pre>



<figure class="wp-block-image size-large"><img data-recalc-dims="1" decoding="async" width="600" height="294" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image-1.png?resize=600%2C294&#038;ssl=1" alt="" class="wp-image-5141" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image-1.png?resize=600%2C294&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image-1.png?resize=450%2C221&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image-1.png?resize=250%2C123&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image-1.png?resize=700%2C344&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image-1.png?resize=520%2C255&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image-1.png?resize=360%2C177&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image-1.png?resize=100%2C49&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2024/03/image-1.png?w=758&amp;ssl=1 758w" sizes="(max-width: 600px) 100vw, 600px" /></figure>The post <a href="https://www.kjctech.net/mdt-in-place-upgrade-to-windows-11/">MDT – In-place Upgrade to Windows 11</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/mdt-in-place-upgrade-to-windows-11/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">5139</post-id>	</item>
	</channel>
</rss>
