<?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 10 Install.wim Archives - the Sysadmin Channel</title>
	<atom:link href="https://thesysadminchannel.com/tag/windows-10-install-wim/feed/" rel="self" type="application/rss+xml" />
	<link>https://thesysadminchannel.com/tag/windows-10-install-wim/</link>
	<description>Documenting My Life as a System Administrator</description>
	<lastBuildDate>Wed, 15 Sep 2021 06:18:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
<site xmlns="com-wordpress:feed-additions:1">144174110</site>	<item>
		<title>How to Extract Windows 10 Enterprise WIM From ISO</title>
		<link>https://thesysadminchannel.com/how-to-extract-windows-10-enterprise-wim-from-iso/</link>
					<comments>https://thesysadminchannel.com/how-to-extract-windows-10-enterprise-wim-from-iso/#comments</comments>
		
		<dc:creator><![CDATA[Paul Contreras]]></dc:creator>
		<pubDate>Sat, 03 Jul 2021 08:04:52 +0000</pubDate>
				<category><![CDATA[Server Administration]]></category>
		<category><![CDATA[Extract Windows 10 Enterprise WIM]]></category>
		<category><![CDATA[Windows 10 Install.wim]]></category>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=3207</guid>

					<description><![CDATA[<p>If you&#8217;ve ever tried to setup an unattended install for Windows 10, you might have noticed during the install that you&#8217;re given options of which version you would like to choose. Today we&#8217;re going to the solve that issue and&#8230; <a href="https://thesysadminchannel.com/how-to-extract-windows-10-enterprise-wim-from-iso/" class="more-link">Continue Reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a href="https://thesysadminchannel.com/how-to-extract-windows-10-enterprise-wim-from-iso/">How to Extract Windows 10 Enterprise WIM From ISO</a> appeared first on <a href="https://thesysadminchannel.com">the Sysadmin Channel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you&#8217;ve ever tried to setup an unattended install for Windows 10, you might have noticed during the install that you&#8217;re given options of which version you would like to choose.  Today we&#8217;re going to the solve that issue and show you how to <strong>extract Windows 10 Enterprise WIM from ISO</strong>.</p>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-10-Version-WIM-Install.png" target="_blank" rel="noopener"><img fetchpriority="high" decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-10-Version-WIM-Install.png" alt="Windows 10 Version WIM Install" width="1026" height="766" class="aligncenter size-full wp-image-3208" srcset="https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-10-Version-WIM-Install.png?v=1625288699 1026w, https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-10-Version-WIM-Install-1024x765.png?v=1625288699 1024w, https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-10-Version-WIM-Install-768x573.png?v=1625288699 768w" sizes="(max-width: 1026px) 100vw, 1026px" /></a></p>
<p>Some use cases for this would be to use an unattended install for Windows 10, you can also use this for SCCM or even MDT if you like.  It can lower the footprint of your setup by removing unnecessary files that you know you won&#8217;t use.  In my case I know I would use Windows 10 Enterprise 100% of the time because it&#8217;s the more appropriate version of my work environment.</p>
<h2>Extract Windows 10 Enterprise WIM From ISO</h2>
<p>Once you&#8217;ve downloaded your WIM file, let&#8217;s go ahead and mount it to your system so we can see exactly what we&#8217;re working with. In my case, I&#8217;m going to mount &#8216;Windows 10 20H2.iso&#8217; to my D drive and open Powershell as an administrator.</p>
<p>By default, any newer Windows 10 machine will have the DISM module loaded with the machine so make sure you&#8217;re using that to extract this.  Next we&#8217;ll run the command <strong>Get-WindowsImage -ImagePath D:\sources\install.wim</strong> to spit all the WIM files that are associated with it.  Once that happens, let&#8217;s take notice of the index that Windows 10 Enterprise is associated with.  In our example, it is sitting at Index #3.</p>
<p>&nbsp;</p>
<div id="attachment_3213" style="width: 1034px" class="wp-caption aligncenter"><a href="https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-10-wim-indexes.png" target="_blank" rel="noopener"><img decoding="async" aria-describedby="caption-attachment-3213" src="https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-10-wim-indexes-short.png" alt="Windows 10 wim indexes-short" width="1024" height="551" class="size-full wp-image-3213" srcset="https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-10-wim-indexes-short.png?v=1625290551 1024w, https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-10-wim-indexes-short-768x413.png?v=1625290551 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><p id="caption-attachment-3213" class="wp-caption-text">Click to view full image</p></div>
<p>PS C:\> Get-WindowsImage -ImagePath D:\sources\install.wim</p>
<p>ImageIndex       : 1<br />
ImageName        : Windows 10 Education<br />
ImageDescription : Windows 10 Education<br />
ImageSize        : 15,734,867,941 bytes</p>
<p>ImageIndex       : 2<br />
ImageName        : Windows 10 Education N<br />
ImageDescription : Windows 10 Education N<br />
ImageSize        : 14,963,222,046 bytes</p>
<p>ImageIndex       : 3<br />
ImageName        : Windows 10 Enterprise<br />
ImageDescription : Windows 10 Enterprise<br />
ImageSize        : 15,735,021,936 bytes</p>
<p>&nbsp;</p>
<p>Next up we&#8217;ll run <strong>Export-WindowsImage -SourceImagePath D:\sources\install.wim -DestinationImagePath $HOME\Desktop\Windows10Enterprise20H2.wim -SourceIndex 3</strong><br />
This is telling Powershell to extract Index 3 from the info above as well as set the destination to my desktop.</p>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2021/07/Export-WindowsImage-SourceImagePath-install.wim_.png" target="_blank" rel="noopener"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2021/07/Export-WindowsImage-SourceImagePath-install.wim_.png" alt="Export-WindowsImage -SourceImagePath install.wim" width="1099" height="632" class="aligncenter size-full wp-image-3222" srcset="https://thesysadminchannel.com/wp-content/uploads/2021/07/Export-WindowsImage-SourceImagePath-install.wim_.png?v=1625293579 1099w, https://thesysadminchannel.com/wp-content/uploads/2021/07/Export-WindowsImage-SourceImagePath-install.wim_-1024x589.png?v=1625293579 1024w, https://thesysadminchannel.com/wp-content/uploads/2021/07/Export-WindowsImage-SourceImagePath-install.wim_-768x442.png?v=1625293579 768w" sizes="(max-width: 1099px) 100vw, 1099px" /></a></p>
<p>Finally, you&#8217;ll need to replace install.wim  that&#8217;s currently in the sources folder with the new wim you just created.  You must rename it to install.wim because that&#8217;s what unattended installs are looking for by default so it must be set to that filename in order for it to work correctly.</p>
<p>Next thing to do is to confirm that we&#8217;ve extracted the Windows 10 Enterprise WIM properly from the general ISO that was available to us.  To do that we&#8217;ll run the same command that we did earlier, however, this time the difference would be that we only see Windows 10 Enterprise as our only option.</p>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-10-wim-Enterprise-index.png" target="_blank" rel="noopener"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-10-wim-Enterprise-index.png" alt="Windows 10 wim Enterprise index" width="1099" height="632" class="aligncenter size-full wp-image-3226" srcset="https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-10-wim-Enterprise-index.png?v=1625295024 1099w, https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-10-wim-Enterprise-index-1024x589.png?v=1625295024 1024w, https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-10-wim-Enterprise-index-768x442.png?v=1625295024 768w" sizes="(max-width: 1099px) 100vw, 1099px" /></a></p>
<p>Now when you run the unattended install, you won&#8217;t be prompted for a Windows 10 version 🙂</p>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-Setup.png" target="_blank" rel="noopener"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-Setup.png" alt="Windows Setup" width="897" height="642" class="aligncenter size-full wp-image-3228" srcset="https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-Setup.png?v=1625295142 897w, https://thesysadminchannel.com/wp-content/uploads/2021/07/Windows-Setup-768x550.png?v=1625295142 768w" sizes="(max-width: 897px) 100vw, 897px" /></a></p>
<h2>Conclusion</h2>
<p>Hopefully this article was able to help figure out how to extract Windows 10 Enterprise WIM from your ISO file.  If you liked this article be sure to check out the others in our <a href="https://thesysadminchannel.com/server-administration/" rel="noopener" target="_blank">Server Administration</a>. </p>
<p>The post <a href="https://thesysadminchannel.com/how-to-extract-windows-10-enterprise-wim-from-iso/">How to Extract Windows 10 Enterprise WIM From ISO</a> appeared first on <a href="https://thesysadminchannel.com">the Sysadmin Channel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://thesysadminchannel.com/how-to-extract-windows-10-enterprise-wim-from-iso/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3207</post-id>	</item>
	</channel>
</rss>
