<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Frozen Machine</title>
	<atom:link href="http://frozenmachine.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://frozenmachine.wordpress.com</link>
	<description>LIVE! It's virtual machines on ice!</description>
	<lastBuildDate>Fri, 10 Oct 2008 17:49:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='frozenmachine.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Frozen Machine</title>
		<link>http://frozenmachine.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://frozenmachine.wordpress.com/osd.xml" title="Frozen Machine" />
	<atom:link rel='hub' href='http://frozenmachine.wordpress.com/?pushpress=hub'/>
		<item>
		<title>The Four Kinds of WIMs</title>
		<link>http://frozenmachine.wordpress.com/2008/10/10/the-four-kinds-of-wims/</link>
		<comments>http://frozenmachine.wordpress.com/2008/10/10/the-four-kinds-of-wims/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 17:26:53 +0000</pubDate>
		<dc:creator>seisyll</dc:creator>
				<category><![CDATA[WIM]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[imagex]]></category>
		<category><![CDATA[imaging]]></category>

		<guid isPermaLink="false">http://frozenmachine.wordpress.com/?p=3</guid>
		<description><![CDATA[So, I&#8217;ve grown to really like Microsoft&#8217;s WIM format.  It&#8217;s a compression format designed specifically for NTFS. Aside from storing all the file data, it also keeps the file metadata and ACLs.  This means it stores reparse points and alternate data streams.  WIM has very good compression and it stores each file only once, to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frozenmachine.wordpress.com&amp;blog=4968546&amp;post=3&amp;subd=frozenmachine&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;ve grown to really like Microsoft&#8217;s WIM format.  It&#8217;s a compression format designed specifically for NTFS.</p>
<div class="wp-caption alignright" style="width: 219px"><a href="http://i.technet.microsoft.com/Cc507875.aa940981_30508_fig01(en-us,TechNet.10).jpg"><img class=" " title="The WIM File Format" src="http://i.technet.microsoft.com/Cc507875.aa940981_30508_fig01(en-us,TechNet.10).jpg" alt="Inside a WIM File" width="209" height="300" /></a><p class="wp-caption-text">Inside a WIM File</p></div>
<p>Aside from storing all the file data, it also keeps the file metadata and ACLs.  This means it stores reparse points and alternate data streams.  WIM has very good compression and it stores each file only once, to save space on duplicate files and hard links (which appear in Windows images quite a bit.)</p>
<p>In short, you can back up your entire operating system to a WIM file and it stays intact.  It&#8217;s great for backups.  And it&#8217;s great for deploying images.</p>
<p><span id="more-3"></span></p>
<p>The other great part of WIM is that it&#8217;s very modular.  You can separate WIMs into pieces and you can reference other WIM files, if you want.</p>
<p>In fact, every Vista install disc has an <strong>install.wim</strong> on it that contains images of each version of Vista represented on the disc (Vista Home, Vista Business, etc.)  It&#8217;s the efficiency of the WIM format that allows all of these different versions to fit on a single disc.</p>
<p>One thing that isn&#8217;t often discussed is the various types of WIM formats.</p>
<ul>
<li>WIM: A <strong>normal WIM file</strong> contains several metadata sections (one for each image) and a big file data section.</li>
<li>SWM: A <strong>split WIM </strong>file stores several metadata sections in the first file, then splits the file data into several files.  This is designed for spanned media.</li>
<li>RWM: A <strong>resource WIM</strong> file stores just the file data.  This type of file isn&#8217;t documented and can&#8217;t be created with ImageX, though it can be applied with ImageX.  (Even normal WIMs and split WIMs can be used as resource WIMs.)</li>
<li>MWM: A <strong>metadata WIM</strong> file stores just the metadata.  Like resource WIMs, you can&#8217;t create these with ImageX.  Also, we tend to use the .wim extension with these sorts of files, because this file has everything needed to recreate an image, it&#8217;s just missing the file backing data.</li>
</ul>
<p>The flexibility of the WIM format lies in being able to separate the file data from the metadata.  All of the above file formats are different combinations of the two.</p>
<p>And why is that?  What good is separating the metadata and the file data?</p>
<p>Consider the following:</p>
<ol>
<li>The metadata for an image is usually just a few megs.  But the file data can be several gigs.</li>
<li>One metadata file can refer to several resource files. (Using the /REF flag in ImageX.)</li>
<li>When applying an image, you can refer to one metadata file and whatever resource files you want.  As long as they collectively contain all the file data, it doesn&#8217;t matter what they&#8217;re named</li>
</ol>
<p>With this in mind, you can create a DVD with file data for a bunch of images.  Then, later, you can distribute new metadata for download over the Internet, if you have an update.</p>
<p>Or, you could create images that use resources from Vista&#8217;s install disc, if you know that your users will already have that disc.</p>
<p>WIM goes a bit beyond what other compression formats do by giving you the chance to split up the files as you choose and even gives you the option to rely upon previously created files.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/frozenmachine.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/frozenmachine.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/frozenmachine.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/frozenmachine.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/frozenmachine.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/frozenmachine.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/frozenmachine.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/frozenmachine.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/frozenmachine.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/frozenmachine.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/frozenmachine.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/frozenmachine.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/frozenmachine.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/frozenmachine.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frozenmachine.wordpress.com&amp;blog=4968546&amp;post=3&amp;subd=frozenmachine&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://frozenmachine.wordpress.com/2008/10/10/the-four-kinds-of-wims/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6422dc6fc33c76220ed0e9033e09e3db?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">seisyll</media:title>
		</media:content>

		<media:content url="http://i.technet.microsoft.com/Cc507875.aa940981_30508_fig01(en-us,TechNet.10).jpg" medium="image">
			<media:title type="html">The WIM File Format</media:title>
		</media:content>
	</item>
	</channel>
</rss>
