<?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>microsoftNOW &#187; dual boot</title>
	<atom:link href="http://www.microsoftnow.com/tag/dual-boot/feed" rel="self" type="application/rss+xml" />
	<link>http://www.microsoftnow.com</link>
	<description></description>
	<lastBuildDate>Wed, 18 Jan 2012 05:17:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.2</generator>
		<item>
		<title>Dual booting Windows Server 2008 R2 with Windows 7 using VHD booting</title>
		<link>http://www.microsoftnow.com/2009/11/dual-booting-windows-server-2008-r2.html</link>
		<comments>http://www.microsoftnow.com/2009/11/dual-booting-windows-server-2008-r2.html#comments</comments>
		<pubDate>Thu, 05 Nov 2009 17:38:00 +0000</pubDate>
		<dc:creator>Shijaz Abdulla</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dual boot]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Server 2008 R2]]></category>

		<guid isPermaLink="false">http://microsoftnow.com/2009/11/dual-booting-windows-server-2008-r2-with-windows-7-using-vhd-booting.html</guid>
		<description><![CDATA[I wanted to run Windows Server 2008 R2 in a dual boot configuration on my Windows 7 RTM laptop – so that I can demonstrate Windows Server 2008 R2 features to partners when required. This gave me an opportunity to use the new “Boot from VHD” feature on Windows 7 and Windows Server 2008 R2. [...]]]></description>
			<content:encoded><![CDATA[<div class='wb_fb_top'><div style="float:right;"></div></div>
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fwww.microsoftnow.com%252F2009%252F11%252Fdual-booting-windows-server-2008-r2.html%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Dual%20booting%20Windows%20Server%202008%20R2%20with%20Windows%207%20using%20VHD%20booting%22%20%7D);"></div>
<p>I wanted to run Windows Server 2008 R2 in a dual boot configuration on my Windows 7 RTM laptop – so that I can demonstrate Windows Server 2008 R2 features to partners when required.</p>
<p>This gave me an opportunity to use the new “Boot from VHD” feature on Windows 7 and Windows Server 2008 R2. Essentially, I would have Windows 7 on my laptop on one partition on the raw disk. The remaining space on the RAW disk (in my case 15 GB) will be allocated to a partition containing a VHD (Virtual Hard Disk) file, that can be mounted to boot the computer off the VHD file. I will be installing Windows Server 2008 R2 on this VHD file.</p>
<p><a href="http://lh3.ggpht.com/_lSGuEfogrPw/SvMM1XMOIHI/AAAAAAAABjQ/vwRVeLZAQ7o/s1600-h/image%5B6%5D.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://lh5.ggpht.com/_lSGuEfogrPw/SvMM6NahibI/AAAAAAAABjY/ML4FqPWT8X8/image_thumb%5B6%5D.png?imgmax=800" width="644" height="257" /></a> </p>
<p>Here’s how I went about doing it.</p>
<p>Since I did not have any unallocated space on my hard drive, I used the “shrink” option on drive C in Windows 7 (Computer Management) to get some free space – and got 15 GB unallocated as seen in the above screenshot.</p>
<p>Next, I popped in the Windows Server 2008 R2 DVD.</p>
<p><a href="http://lh4.ggpht.com/_lSGuEfogrPw/SvMNAUef8QI/AAAAAAAABio/690OGpn4w68/s1600-h/image%5B5%5D.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://lh5.ggpht.com/_lSGuEfogrPw/SvMNF4xatGI/AAAAAAAABis/3iMancZXOEU/image_thumb%5B2%5D.png?imgmax=800" width="504" height="377" /></a> </p>
<p>At the Welcome screen above, I press <strong>SHIFT+10</strong> to launch the WinPE console.</p>
<p>Once you get the WinPE console, use DISKPART to prepare a partition for the Windows Server 2008 R2 VHD:</p>
<ol>
<li>Type <strong>&#8216;DISKPART’</strong> to launch the utility</li>
<li>Type ‘<strong>LIST DISK</strong>’ to see the list of physical disks in your machine.</li>
<li>Type ‘<strong>SEL DISK 0</strong>’ assuming you have only 1 physical disk installed</li>
<li>Type ‘<strong>CREATE PARTITION PRIMARY</strong>’ to create a primary partition out of the free space</li>
<li>Type ‘<strong>FORMAT FS=NTFS QUICK</strong>’ to quick-format the new partition on NTFS format</li>
<li>Type ‘<strong>LIST VOL</strong>’ and look at what you’ve done <img src='http://www.microsoftnow.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . Notice the asterisk next to the new partition (in my case, it’s Volume 3).</li>
<li>Type ‘<strong>ASSIGN</strong>’ to assign the next available drive letter to the selected partition.</li>
<li>Type ‘<strong>LIST VOL</strong>’ again to see what drive letter was assigned (in my case, it’s E)</li>
<li>Now for the magic: ‘<strong>CREATE VDISK FILE=E:\FILENAME.VHD MAXIMUM=15000 TYPE=EXPANDABLE</strong>’ – this creates a dynamically expandable VHD file filename.vhd on the new volume with a maximum size of 15000 MB. Keep the maximum size lesser than the size of the partition.<a href="http://lh4.ggpht.com/_lSGuEfogrPw/SvMNPYEfG_I/AAAAAAAABiw/kPNoTVr5VZk/s1600-h/image7%5B4%5D.png">       <br /><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="WinPE Screenshot" border="0" alt="WinPE Screenshot" src="http://lh6.ggpht.com/_lSGuEfogrPw/SvMNTxoHtOI/AAAAAAAABi0/UEeZhI7vAAg/image7_thumb%5B7%5D.png?imgmax=800" width="604" height="669" /></a>      </li>
<li>Notice that once you finish this command, Windows 7 detects virtual hardware “Microsoft VHD HBA” and installs it.&#160; <br /><a href="http://lh4.ggpht.com/_lSGuEfogrPw/SvMNU_c1LCI/AAAAAAAABi4/Q_sS1QTaIrg/s1600-h/image6.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://lh6.ggpht.com/_lSGuEfogrPw/SvMNWTcBTYI/AAAAAAAABi8/4Xg4Mh7AbDg/image_thumb2.png?imgmax=800" width="244" height="83" /></a> </li>
<li>Type ‘<strong>SELECT VDISK FILE=E:\filename.vhd</strong>’</li>
<li>Type ‘<strong>ATTACH VDISK</strong>’ to attach the VHD disk.</li>
<li>Type ‘<strong>CREATE PARTITION PRIMARY</strong>’ to create a primary partition inside the VHD.</li>
<li>Quick format the partition on NTFS by issuing the ‘<strong>FORMAT FS=NTFS QUICK</strong>’ command</li>
<li>Assign a drive letter V: on this volume ‘<strong>ASSIGN LETTER=V:</strong>’</li>
<li><strong>LIST VOL</strong> to see what you’ve achieved.</li>
</ol>
<ul>
<li>Volume 1 and 2 were pre-existing Windows 7 volumes</li>
<li>Volume 3 (E:) is the disk that we created to store the VHD file</li>
<li>Volume 4 (V:) is the virtual disk inside the virtual machine (uses space on E:)</li>
</ul>
<p><a href="http://lh5.ggpht.com/_lSGuEfogrPw/SvMNZtA7M-I/AAAAAAAABjA/73h0AYzztjs/s1600-h/image10%5B4%5D.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="WinPE screenshot" border="0" alt="WinPE screenshot" src="http://lh6.ggpht.com/_lSGuEfogrPw/SvMNc3cTIFI/AAAAAAAABjE/vg3FUFEpm7c/image10_thumb%5B9%5D.png?imgmax=800" width="604" height="542" /></a></p>
<p>Type <strong>EXIT DISKPART</strong> to close the utility and close the WinPE session.</p>
<p>Next, continue with the Windows Server 2008 R2 installation from Windows 7. Do not choose the upgrade option, choose the New Installation option.</p>
<p>Choose to install Windows on the partition you just created.</p>
<p>&#160;</p>
<p><a href="http://lh3.ggpht.com/_lSGuEfogrPw/SvMNg_i0KXI/AAAAAAAABjI/ZNEQgHOSxWk/s1600-h/image%5B4%5D.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://lh3.ggpht.com/_lSGuEfogrPw/SvMNkUxCU7I/AAAAAAAABjM/sLNRV6HIQ4M/image_thumb%5B1%5D.png?imgmax=800" width="604" height="464" /></a></p>
</p>
<p>When installation is complete, and you restart your computer, a boot loader menu appears, where you can choose to boot Windows 7 or Windows Server 2008 R2.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.microsoftnow.com/2009/11/dual-booting-windows-server-2008-r2.html/feed</wfw:commentRss>
		<slash:comments>60</slash:comments>
		</item>
	</channel>
</rss>

