<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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: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>Comments for Citrix Blogger</title>
	<atom:link href="http://citrixblogger.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://citrixblogger.org</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 00:22:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Dynamic VHD Walkthrough by jeffreymuir</title>
		<link>http://citrixblogger.org/2008/12/01/dynamic-vhd-walkthrough/#comment-2312</link>
		<dc:creator><![CDATA[jeffreymuir]]></dc:creator>
		<pubDate>Sat, 04 Feb 2012 00:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://citrixblogger.wordpress.com/?p=449#comment-2312</guid>
		<description><![CDATA[The simple answer is that a file system does take up space for a formatted drive.  Even an empty drive really is not empty.  Also, the rule is that anything that is written is saved.  Even if the file system only uses the block temporarily and writes it, the VHD assumes that it needs to keep it.  In other words, if you touch it, then it will be saved.]]></description>
		<content:encoded><![CDATA[<p>The simple answer is that a file system does take up space for a formatted drive.  Even an empty drive really is not empty.  Also, the rule is that anything that is written is saved.  Even if the file system only uses the block temporarily and writes it, the VHD assumes that it needs to keep it.  In other words, if you touch it, then it will be saved.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic VHD Walkthrough by rprep</title>
		<link>http://citrixblogger.org/2008/12/01/dynamic-vhd-walkthrough/#comment-2308</link>
		<dc:creator><![CDATA[rprep]]></dc:creator>
		<pubDate>Mon, 30 Jan 2012 14:40:03 +0000</pubDate>
		<guid isPermaLink="false">http://citrixblogger.wordpress.com/?p=449#comment-2308</guid>
		<description><![CDATA[Thanks for the reply. But if the sparse method is used, the actual file size should be be smaller than total I&#039;m getting. Right? 
&gt; You could prove this by dumping out the BAT
I didn&#039;t understood this. I printed all the valid entries (not -1) in the BAT and there are 39 of them. BAT[0]: 259 and the one pointing to last block is BAT[11]: 155945.]]></description>
		<content:encoded><![CDATA[<p>Thanks for the reply. But if the sparse method is used, the actual file size should be be smaller than total I&#8217;m getting. Right?<br />
&gt; You could prove this by dumping out the BAT<br />
I didn&#8217;t understood this. I printed all the valid entries (not -1) in the BAT and there are 39 of them. BAT[0]: 259 and the one pointing to last block is BAT[11]: 155945.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic VHD Walkthrough by jeffreymuir</title>
		<link>http://citrixblogger.org/2008/12/01/dynamic-vhd-walkthrough/#comment-2307</link>
		<dc:creator><![CDATA[jeffreymuir]]></dc:creator>
		<pubDate>Sun, 29 Jan 2012 23:26:01 +0000</pubDate>
		<guid isPermaLink="false">http://citrixblogger.wordpress.com/?p=449#comment-2307</guid>
		<description><![CDATA[The allocation of blocks in a dynamic VHD is done with a sparse method.  In other words, it will only write blocks that are accessed with a write operation.  What this really means is that creating and formatting the drive will only touch certain blocks.  Most formats these days only focus on what they need to change instead of writing the entire disk.  

So, you have not gone crazy.  The assumption that format touches each block is the problem.  You could prove this by dumping out the BAT.  Quite a few of the entries should be empty.]]></description>
		<content:encoded><![CDATA[<p>The allocation of blocks in a dynamic VHD is done with a sparse method.  In other words, it will only write blocks that are accessed with a write operation.  What this really means is that creating and formatting the drive will only touch certain blocks.  Most formats these days only focus on what they need to change instead of writing the entire disk.  </p>
<p>So, you have not gone crazy.  The assumption that format touches each block is the problem.  You could prove this by dumping out the BAT.  Quite a few of the entries should be empty.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic VHD Walkthrough by rprep</title>
		<link>http://citrixblogger.org/2008/12/01/dynamic-vhd-walkthrough/#comment-2306</link>
		<dc:creator><![CDATA[rprep]]></dc:creator>
		<pubDate>Sat, 28 Jan 2012 23:25:38 +0000</pubDate>
		<guid isPermaLink="false">http://citrixblogger.wordpress.com/?p=449#comment-2306</guid>
		<description><![CDATA[Thanks for the article. I recently started digging into VHD file and started with MS&#039;s spec doc. Your article clarifies lots of things and was very helpful for dynamic VHD. But look like I&#039;m still missing something. I wrote a test program to read 64 GB dynamic vhd file. For some reason I&#039;m not able to match the size of the file with the one I calculated in my program.

This is the formula I use in my program:
TotalFileSize = 512 (Header) + 1024  (Dynamic header) + (32768 *4) //size of BAT + (valid entries in BAT * (2097152+512)) //size of blocks + 512 (footer)

32768 - #s of 2MB blocks needed for 64 GB data. I get this value correctly.
2 MB = 2097152

Based on this formula I can verify the VHD file size if the VHD disk is just initialized in disk manager. No partition yet. Just MBR. At this point, #s of valid entries in BAT is 1 (one).
Size of VHD file = 2230784
TotalFileSize = 2230784 // #s of 2 MB blocks = 1

Then I formatted the entire disk (64 GB) to NTFS volume.
Size of VHD file = 84868608
TotalFileSize = 81942016 // #s of 2 MB blocks = 39

I can&#039;t understand what I&#039;m doing wrong here. Why the file size that I calculate doesn&#039;t match with actual size of the file.

I&#039;m using 2008 R2 Hyper-V and my VM is 2008 R1. Any idea what I&#039;m missing here.]]></description>
		<content:encoded><![CDATA[<p>Thanks for the article. I recently started digging into VHD file and started with MS&#8217;s spec doc. Your article clarifies lots of things and was very helpful for dynamic VHD. But look like I&#8217;m still missing something. I wrote a test program to read 64 GB dynamic vhd file. For some reason I&#8217;m not able to match the size of the file with the one I calculated in my program.</p>
<p>This is the formula I use in my program:<br />
TotalFileSize = 512 (Header) + 1024  (Dynamic header) + (32768 *4) //size of BAT + (valid entries in BAT * (2097152+512)) //size of blocks + 512 (footer)</p>
<p>32768 &#8211; #s of 2MB blocks needed for 64 GB data. I get this value correctly.<br />
2 MB = 2097152</p>
<p>Based on this formula I can verify the VHD file size if the VHD disk is just initialized in disk manager. No partition yet. Just MBR. At this point, #s of valid entries in BAT is 1 (one).<br />
Size of VHD file = 2230784<br />
TotalFileSize = 2230784 // #s of 2 MB blocks = 1</p>
<p>Then I formatted the entire disk (64 GB) to NTFS volume.<br />
Size of VHD file = 84868608<br />
TotalFileSize = 81942016 // #s of 2 MB blocks = 39</p>
<p>I can&#8217;t understand what I&#8217;m doing wrong here. Why the file size that I calculate doesn&#8217;t match with actual size of the file.</p>
<p>I&#8217;m using 2008 R2 Hyper-V and my VM is 2008 R1. Any idea what I&#8217;m missing here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Citrix Acronym Soup (Legacy Software) by - Cliff Davies</title>
		<link>http://citrixblogger.org/2008/03/15/eos-eom-eol-legacy-matrix/#comment-2305</link>
		<dc:creator><![CDATA[- Cliff Davies]]></dc:creator>
		<pubDate>Wed, 25 Jan 2012 19:18:35 +0000</pubDate>
		<guid isPermaLink="false">http://citrixblogger.wordpress.com/?p=213#comment-2305</guid>
		<description><![CDATA[[...] (EOS), End of Maintenance (EOM) and End of Life (EOL) as Citrix&#039;s Jeff Muir wrote an excellent&#160;article describing all of this in great [...]]]></description>
		<content:encoded><![CDATA[<p>[...] (EOS), End of Maintenance (EOM) and End of Life (EOL) as Citrix&#039;s Jeff Muir wrote an excellent&nbsp;article describing all of this in great [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic VHD Walkthrough by JF</title>
		<link>http://citrixblogger.org/2008/12/01/dynamic-vhd-walkthrough/#comment-2296</link>
		<dc:creator><![CDATA[JF]]></dc:creator>
		<pubDate>Tue, 17 Jan 2012 20:34:04 +0000</pubDate>
		<guid isPermaLink="false">http://citrixblogger.wordpress.com/?p=449#comment-2296</guid>
		<description><![CDATA[Hi

First off thanks for this post.. really helpful in understanding the VHD format. I had a question on differencing vhd... Hope you could clear my doubt. Using CreateVirtualDisk API I created a one step parent-child chain. Now if i see the contents of the child, I see that the BAT starts from the 4th sector of the file..I can account for the first 3 sectors but not the 4th sector whose contents start with the parent&#039;s name and nothing else(first 5sectors dumped together and 5th one is the start of BAT)

Sector 0:
0x0000 : 63 6f 6e 65 63 74 69 78 - 00 00 00 02 00 01 00 00   conectix........
0x0010 : 00 00 00 00 00 00 02 00 - 16 a8 8f ce 77 69 6e 20   .........¿Å╬win.
0x0020 : 00 06 00 01 57 69 32 6b - 00 00 00 01 3f ef fe 00   ....Wi2k....?∩■.
0x0030 : 00 00 00 01 3f ef fe 00 - 28 a0 10 3f 00 00 00 04   ....?∩■.(á.?....
0x0040 : ff ff e9 65 72 e1 78 92 - b5 34 f6 44 96 6d 13 dd     ΘerßxÆ╡4÷Dûm.▌
0x0050 : d3 c2 7b 53 00 00 00 00 - 00 00 00 00 00 00 00 00   ╙┬{S............
0x0060 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0070 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0080 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0090 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00a0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00b0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00c0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00d0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00e0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00f0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0100 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0110 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0120 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0130 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0140 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0150 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0160 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0170 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0180 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0190 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01a0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01b0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01c0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01d0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01e0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01f0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................

Sector 1:
0x0000 : 63 78 73 70 61 72 73 65 - ff ff ff ff ff ff ff ff   cxsparse        
0x0010 : 00 00 00 00 00 00 08 00 - 00 01 00 00 00 00 0a 00   ................
0x0020 : 00 20 00 00 ff ff de 28 - 5f 23 91 a6 d7 62 5a 45   ....  ▐(_#æª╫bZE
0x0030 : a8 8d a1 96 4a b4 93 d1 - 16 a8 8f 59 00 00 00 00   ¿ìíûJ┤ô╤.¿ÅY....
0x0040 : 00 43 00 3a 00 5c 00 63 - 00 6f 00 64 00 65 00 5c   .C.:.\.c.o.d.e.\
0x0050 : 00 74 00 65 00 73 00 74 - 00 5c 00 70 00 61 00 72   .t.e.s.t.\.p.a.r
0x0060 : 00 65 00 6e 00 74 00 2e - 00 76 00 68 00 64 00 00   .e.n.t...v.h.d..
0x0070 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0080 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0090 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00a0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00b0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00c0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00d0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00e0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00f0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0100 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0110 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0120 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0130 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0140 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0150 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0160 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0170 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0180 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0190 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01a0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01b0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01c0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01d0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01e0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01f0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................

Sector 2:
0x0000 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0010 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0020 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0030 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0040 : 57 32 6b 75 00 00 02 00 - 00 00 00 2e 00 00 00 00   W2ku............
0x0050 : 00 00 00 00 00 00 06 00 - 57 32 72 75 00 01 00 00   ........W2ru....
0x0060 : 00 00 00 18 00 00 00 00 - 00 00 00 00 00 00 30 00   ..............0.
0x0070 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0080 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0090 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00a0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00b0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00c0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00d0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00e0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00f0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0100 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0110 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0120 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0130 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0140 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0150 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0160 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0170 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0180 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0190 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01a0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01b0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01c0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01d0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01e0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01f0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................

Sector 3:
0x0000 : 43 00 3a 00 5c 00 63 00 - 6f 00 64 00 65 00 5c 00   C.:.\.c.o.d.e.\.
0x0010 : 74 00 65 00 73 00 74 00 - 5c 00 70 00 61 00 72 00   t.e.s.t.\.p.a.r.
0x0020 : 65 00 6e 00 74 00 2e 00 - 76 00 68 00 64 00 00 00   e.n.t...v.h.d...
0x0030 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0040 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0050 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0060 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0070 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0080 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0090 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00a0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00b0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00c0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00d0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00e0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x00f0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0100 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0110 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0120 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0130 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0140 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0150 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0160 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0170 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0180 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x0190 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01a0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01b0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01c0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01d0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01e0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................
0x01f0 : 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00   ................

Sector 4:
0x0000 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0010 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0020 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0030 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0040 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0050 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0060 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0070 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0080 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0090 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x00a0 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x00b0 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x00c0 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x00d0 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x00e0 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x00f0 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0100 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0110 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0120 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0130 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0140 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0150 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0160 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0170 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0180 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x0190 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x01a0 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x01b0 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x01c0 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x01d0 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x01e0 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff                   
0x01f0 : ff ff ff ff ff ff ff ff - ff ff ff ff ff ff ff ff   ................]]></description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>First off thanks for this post.. really helpful in understanding the VHD format. I had a question on differencing vhd&#8230; Hope you could clear my doubt. Using CreateVirtualDisk API I created a one step parent-child chain. Now if i see the contents of the child, I see that the BAT starts from the 4th sector of the file..I can account for the first 3 sectors but not the 4th sector whose contents start with the parent&#8217;s name and nothing else(first 5sectors dumped together and 5th one is the start of BAT)</p>
<p>Sector 0:<br />
0&#215;0000 : 63 6f 6e 65 63 74 69 78 &#8211; 00 00 00 02 00 01 00 00   conectix&#8230;&#8230;..<br />
0&#215;0010 : 00 00 00 00 00 00 02 00 &#8211; 16 a8 8f ce 77 69 6e 20   &#8230;&#8230;&#8230;¿Å╬win.<br />
0&#215;0020 : 00 06 00 01 57 69 32 6b &#8211; 00 00 00 01 3f ef fe 00   &#8230;.Wi2k&#8230;.?∩■.<br />
0&#215;0030 : 00 00 00 01 3f ef fe 00 &#8211; 28 a0 10 3f 00 00 00 04   &#8230;.?∩■.(á.?&#8230;.<br />
0&#215;0040 : ff ff e9 65 72 e1 78 92 &#8211; b5 34 f6 44 96 6d 13 dd     ΘerßxÆ╡4÷Dûm.▌<br />
0&#215;0050 : d3 c2 7b 53 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   ╙┬{S&#8230;&#8230;&#8230;&#8230;<br />
0&#215;0060 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0070 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0080 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0090 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00a0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00b0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00c0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00d0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00e0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00f0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0100 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0110 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0120 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0130 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0140 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0150 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0160 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0170 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0180 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0190 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01a0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01b0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01c0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01d0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01e0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01f0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.</p>
<p>Sector 1:<br />
0&#215;0000 : 63 78 73 70 61 72 73 65 &#8211; ff ff ff ff ff ff ff ff   cxsparse        <br />
0&#215;0010 : 00 00 00 00 00 00 08 00 &#8211; 00 01 00 00 00 00 0a 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0020 : 00 20 00 00 ff ff de 28 &#8211; 5f 23 91 a6 d7 62 5a 45   &#8230;.  ▐(_#æª╫bZE<br />
0&#215;0030 : a8 8d a1 96 4a b4 93 d1 &#8211; 16 a8 8f 59 00 00 00 00   ¿ìíûJ┤ô╤.¿ÅY&#8230;.<br />
0&#215;0040 : 00 43 00 3a 00 5c 00 63 &#8211; 00 6f 00 64 00 65 00 5c   .C.:.\.c.o.d.e.\<br />
0&#215;0050 : 00 74 00 65 00 73 00 74 &#8211; 00 5c 00 70 00 61 00 72   .t.e.s.t.\.p.a.r<br />
0&#215;0060 : 00 65 00 6e 00 74 00 2e &#8211; 00 76 00 68 00 64 00 00   .e.n.t&#8230;v.h.d..<br />
0&#215;0070 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0080 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0090 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00a0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00b0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00c0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00d0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00e0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00f0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0100 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0110 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0120 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0130 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0140 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0150 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0160 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0170 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0180 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0190 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01a0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01b0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01c0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01d0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01e0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01f0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.</p>
<p>Sector 2:<br />
0&#215;0000 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0010 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0020 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0030 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0040 : 57 32 6b 75 00 00 02 00 &#8211; 00 00 00 2e 00 00 00 00   W2ku&#8230;&#8230;&#8230;&#8230;<br />
0&#215;0050 : 00 00 00 00 00 00 06 00 &#8211; 57 32 72 75 00 01 00 00   &#8230;&#8230;..W2ru&#8230;.<br />
0&#215;0060 : 00 00 00 18 00 00 00 00 &#8211; 00 00 00 00 00 00 30 00   &#8230;&#8230;&#8230;&#8230;..0.<br />
0&#215;0070 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0080 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0090 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00a0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00b0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00c0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00d0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00e0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00f0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0100 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0110 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0120 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0130 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0140 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0150 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0160 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0170 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0180 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0190 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01a0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01b0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01c0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01d0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01e0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01f0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.</p>
<p>Sector 3:<br />
0&#215;0000 : 43 00 3a 00 5c 00 63 00 &#8211; 6f 00 64 00 65 00 5c 00   C.:.\.c.o.d.e.\.<br />
0&#215;0010 : 74 00 65 00 73 00 74 00 &#8211; 5c 00 70 00 61 00 72 00   t.e.s.t.\.p.a.r.<br />
0&#215;0020 : 65 00 6e 00 74 00 2e 00 &#8211; 76 00 68 00 64 00 00 00   e.n.t&#8230;v.h.d&#8230;<br />
0&#215;0030 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0040 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0050 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0060 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0070 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0080 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0090 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00a0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00b0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00c0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00d0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00e0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x00f0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0100 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0110 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0120 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0130 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0140 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0150 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0160 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0170 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0180 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0&#215;0190 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01a0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01b0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01c0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01d0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01e0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.<br />
0x01f0 : 00 00 00 00 00 00 00 00 &#8211; 00 00 00 00 00 00 00 00   &#8230;&#8230;&#8230;&#8230;&#8230;.</p>
<p>Sector 4:<br />
0&#215;0000 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0010 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0020 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0030 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0040 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0050 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0060 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0070 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0080 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0090 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0x00a0 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0x00b0 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0x00c0 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0x00d0 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0x00e0 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0x00f0 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0100 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0110 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0120 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0130 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0140 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0150 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0160 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0170 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0180 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0&#215;0190 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0x01a0 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0x01b0 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0x01c0 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0x01d0 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0x01e0 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff                   <br />
0x01f0 : ff ff ff ff ff ff ff ff &#8211; ff ff ff ff ff ff ff ff   &#8230;&#8230;&#8230;&#8230;&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Citrix Acronym Soup (Legacy Software) by Citrix plans to end support for XenApp 6.0 in 2013. What&#039;s that? You&#039;re still migrating to 6.0? &#124; My Digital Desktop</title>
		<link>http://citrixblogger.org/2008/03/15/eos-eom-eol-legacy-matrix/#comment-2294</link>
		<dc:creator><![CDATA[Citrix plans to end support for XenApp 6.0 in 2013. What&#039;s that? You&#039;re still migrating to 6.0? &#124; My Digital Desktop]]></dc:creator>
		<pubDate>Tue, 17 Jan 2012 08:33:01 +0000</pubDate>
		<guid isPermaLink="false">http://citrixblogger.wordpress.com/?p=213#comment-2294</guid>
		<description><![CDATA[[...] End of Maintenance (EOM) and End of Life (EOL) as Citrix&#8217;s Jeff Muir wrote an excellent&#160;article describing all of this in great [...]]]></description>
		<content:encoded><![CDATA[<p>[...] End of Maintenance (EOM) and End of Life (EOL) as Citrix&#8217;s Jeff Muir wrote an excellent&nbsp;article describing all of this in great [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Hedgehog Concept by Five Things the MMA Fighter MUST Have for Ring Dominance</title>
		<link>http://citrixblogger.org/2008/04/29/the-hedgehog-concept/#comment-2229</link>
		<dc:creator><![CDATA[Five Things the MMA Fighter MUST Have for Ring Dominance]]></dc:creator>
		<pubDate>Wed, 21 Dec 2011 23:24:47 +0000</pubDate>
		<guid isPermaLink="false">http://citrixblogger.wordpress.com/?p=247#comment-2229</guid>
		<description><![CDATA[[...] yourself a “Hedgehog”. When you get a chance, visit this link to understand in detail what a “Hedgehog” is. Basically, a hedgehog is the one thing you do [...]]]></description>
		<content:encoded><![CDATA[<p>[...] yourself a “Hedgehog”. When you get a chance, visit this link to understand in detail what a “Hedgehog” is. Basically, a hedgehog is the one thing you do [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging XAMA SDK Applications by https://jonathanc.myopenid.com/</title>
		<link>http://citrixblogger.org/2011/12/19/debugging-xama-sdk-applications/#comment-2222</link>
		<dc:creator><![CDATA[https://jonathanc.myopenid.com/]]></dc:creator>
		<pubDate>Tue, 20 Dec 2011 01:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://citrixblogger.org/?p=757#comment-2222</guid>
		<description><![CDATA[See also Debugger.Launch():
http://msdn.microsoft.com/en-us/library/system.diagnostics.debugger.launch.aspx]]></description>
		<content:encoded><![CDATA[<p>See also Debugger.Launch():<br />
<a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.debugger.launch.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.diagnostics.debugger.launch.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging XAMA SDK Applications by jeffreymuir</title>
		<link>http://citrixblogger.org/2011/12/19/debugging-xama-sdk-applications/#comment-2221</link>
		<dc:creator><![CDATA[jeffreymuir]]></dc:creator>
		<pubDate>Tue, 20 Dec 2011 01:09:54 +0000</pubDate>
		<guid isPermaLink="false">http://citrixblogger.org/?p=757#comment-2221</guid>
		<description><![CDATA[This is an excellent tip since it would allow the program to be waiting for the debugger as soon as it was started.]]></description>
		<content:encoded><![CDATA[<p>This is an excellent tip since it would allow the program to be waiting for the debugger as soon as it was started.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

