<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Matthijs's blog</title><link>http://blogs.technet.com/matthts/default.aspx</link><description>Virtualization tools and stuff.&lt;br&gt;&lt;br&gt;
By Matthijs ten Seldam</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Capture a disk and create a VHD from it: Disk2VHD</title><link>http://blogs.technet.com/matthts/archive/2009/10/08/capture-a-disk-and-create-a-vhd-from-it-disk2vhd.aspx</link><pubDate>Thu, 08 Oct 2009 22:02:01 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3285599</guid><dc:creator>matthts</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/matthts/comments/3285599.aspx</comments><wfw:commentRss>http://blogs.technet.com/matthts/commentrss.aspx?PostID=3285599</wfw:commentRss><description>&lt;p&gt;Talking about cool utilities, Mark and Bruce have created a disk capturing tool which will create a VHD from the capture.&lt;/p&gt;  &lt;p&gt;Do you have a running machine you would like to put into a VM? This tool may just be enough.&lt;/p&gt;  &lt;p&gt;Check it out &lt;a href="http://technet.microsoft.com/en-us/sysinternals/ee656415.aspx"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3285599" width="1" height="1"&gt;</description></item><item><title>Microsoft and Red Hat Complete Cooperative Technical Support</title><link>http://blogs.technet.com/matthts/archive/2009/10/07/microsoft-and-red-hat-complete-cooperative-technical-support.aspx</link><pubDate>Wed, 07 Oct 2009 21:40:21 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3285327</guid><dc:creator>matthts</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/matthts/comments/3285327.aspx</comments><wfw:commentRss>http://blogs.technet.com/matthts/commentrss.aspx?PostID=3285327</wfw:commentRss><description>&lt;p&gt;This is nothing more than a link to a great &lt;a href="http://blogs.technet.com/virtualization/archive/2009/10/07/microsoft-and-red-hat-complete-cooperative-technical-support.aspx"&gt;post&lt;/a&gt; from Mike Neil on our progress with Redhat. There is now cooperative support from both companies when running select applications on either virtualization product, being Hyper-V or KVM.&lt;/p&gt;  &lt;p&gt;Also a very important piece of the post is the fact that the Microsoft contribution of the Integration Components source code has made it to the Linux kernel tree. This means any Linux distribution can compile these and leverage the components for optimal performance running on Hyper-V!&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3285327" width="1" height="1"&gt;</description></item><item><title>Using Hyper-V Server 2008 R2 for VDI</title><link>http://blogs.technet.com/matthts/archive/2009/09/15/using-hyper-v-server-2008-r2-with-vdi.aspx</link><pubDate>Tue, 15 Sep 2009 16:41:27 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3281158</guid><dc:creator>matthts</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/matthts/comments/3281158.aspx</comments><wfw:commentRss>http://blogs.technet.com/matthts/commentrss.aspx?PostID=3281158</wfw:commentRss><description>&lt;p&gt;When configuring a Virtual Desktop Infrastructure using Remote Desktop Services in Windows Server 2008 R2, you need the Remote Desktop Virtualization Host role service. Enabling that on a Windows Server 2008 R2 system with the Full UI&amp;#160; is rather straightforward.&lt;/p&gt;  &lt;p&gt;But I could not quickly find what to enable on Hyper-V Server. As we clearly state on the &lt;a href="http://www.microsoft.com/hyper-v-server/en/us/default.aspx"&gt;Hyper-V Server home page&lt;/a&gt;, Hyper-V Server 2008 R2 is ideally suited for VDI. But how can you enable the Remote Desktop Virtualization Host?&lt;/p&gt;  &lt;p&gt;It turned out to be quite simple once you know what to look for (isn’t that common).&lt;/p&gt;  &lt;p&gt;When you search for the available features on Hyper-V Server you can use DISM. For example “dism /online /Get-Features /Format:table”. This may give the following output:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/matthts/WindowsLiveWriter/UsingHyperVServer2008R2withVDI_DC91/image_4.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/matthts/WindowsLiveWriter/UsingHyperVServer2008R2withVDI_DC91/image_thumb_1.png" width="527" height="427" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Now I did not find the Remote Desktop Virtualization Host feature in this list :-). Through PowerShell however, I found out it to be the VmHostAgent feature.&lt;/p&gt;  &lt;p&gt;I had the Server Manager cmdlets installed on the Hyper-V Server host. This gives a much more readable output of features. This is what I used in PowerShell:&lt;/p&gt;  &lt;p&gt;Import-Module ServerManager&lt;/p&gt;  &lt;p&gt;Get-WindowsFeature&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/matthts/WindowsLiveWriter/UsingHyperVServer2008R2withVDI_DC91/image_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/matthts/WindowsLiveWriter/UsingHyperVServer2008R2withVDI_DC91/image_thumb.png" width="529" height="349" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Now you can see the Remote Desktop Virtualization Host feature with a Name of RDS-Virtualization.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Enabling the feature is now simple.&lt;/p&gt;  &lt;p&gt;&lt;u&gt;DISM&lt;/u&gt;&lt;/p&gt;  &lt;p&gt;dism /online /Enable-Feature /FeatureName:VmHostAgent&lt;/p&gt;  &lt;p&gt;! Make sure you type VmHostAgent with correct casing !&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;u&gt;PowerShell&lt;/u&gt;&lt;/p&gt;  &lt;p&gt;Add-WindowsFeature –Name RDS-Virtualization&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3281158" width="1" height="1"&gt;</description></item><item><title>‘Missing’ network adapters in Hyper-V Server 2008 R2</title><link>http://blogs.technet.com/matthts/archive/2009/09/14/missing-network-adapters-in-hyper-v-server-2008-r2.aspx</link><pubDate>Mon, 14 Sep 2009 17:46:19 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3280938</guid><dc:creator>matthts</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/matthts/comments/3280938.aspx</comments><wfw:commentRss>http://blogs.technet.com/matthts/commentrss.aspx?PostID=3280938</wfw:commentRss><description>&lt;p&gt;When you choose option 8 in sconfig you may notice that sconfig lists fewer network adapters than there are actually physically available. It is also possible that sconfig shows no network adapters at all.&lt;/p&gt;  &lt;p&gt;Although it may not be obvious, there is a simple reason behind this. Sconfig only shows ‘active network interfaces’ by running the following WMI query:&lt;/p&gt;  &lt;p&gt;&amp;quot;SELECT * FROM Win32_NetworkAdapterConfiguration where IPenabled=TRUE&amp;quot;&lt;/p&gt;  &lt;p&gt;This query returns active network adapters or more accurately network adapters with an IP configuration. When network adapters have no physical connection, neither APIPA, static IP or DHCP configured IP will exist and so sconfig shows no information for those adapters.&lt;/p&gt;  &lt;p&gt;The solution to this, if you want to list the adapters or configure IP on any of them, is to use NetShell (netsh).&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3280938" width="1" height="1"&gt;</description></item><item><title>How many VM’s in a Hyper-V Server 2008 R2 cluster?</title><link>http://blogs.technet.com/matthts/archive/2009/09/08/how-many-vm-s-in-a-hyper-v-server-2008-r2-cluster.aspx</link><pubDate>Tue, 08 Sep 2009 16:15:42 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3279787</guid><dc:creator>matthts</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/matthts/comments/3279787.aspx</comments><wfw:commentRss>http://blogs.technet.com/matthts/commentrss.aspx?PostID=3279787</wfw:commentRss><description>&lt;p&gt;Hyper-V Server 2008 R2 fully supports clustering. With the addition of enterprise features it has become the ideal virtualization host amongst all Microsoft platform offerings; Windows Server 2008 R2 (Standard, Enterprise, Datacenter), Microsoft Hyper-V Server 2008 R2.&lt;/p&gt;  &lt;p&gt;A virtualization host supports a maximum of 384 VM’s. However this is not the case when the host is a cluster node. When using clusters, we support a maximum of 64 VM’s per cluster node. So stretching that to a cluster of 16 nodes, we support a maximum of 16 times 64 VM’s on the cluster. That is a total of 1024 VM’s in a cluster. From a clustering design point of view it makes more sense to have 1 or even two passive nodes (one for failure, one for maintenance).&lt;/p&gt;  &lt;p&gt;This maximum is true for all virtualization hosts being either Microsoft Hyper-V Server 2008 R2 or the Windows Server 2008 R2 editions.&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3279787" width="1" height="1"&gt;</description></item><item><title>Hyper-V Resource Kit</title><link>http://blogs.technet.com/matthts/archive/2009/09/08/hyper-v-resource-kit.aspx</link><pubDate>Tue, 08 Sep 2009 16:08:39 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3279782</guid><dc:creator>matthts</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/matthts/comments/3279782.aspx</comments><wfw:commentRss>http://blogs.technet.com/matthts/commentrss.aspx?PostID=3279782</wfw:commentRss><description>&lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/matthts/WindowsLiveWriter/HyperVResourceKit_D4F4/HyperVReskit_2.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="HyperVReskit" border="0" alt="HyperVReskit" src="http://blogs.technet.com/blogfiles/matthts/WindowsLiveWriter/HyperVResourceKit_D4F4/HyperVReskit_thumb.jpg" width="201" height="244" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;This is not an announcement on the availability of the Hyper-V Resource Kit; it has been available for two months now.&lt;/p&gt;  &lt;p&gt;But I finally got the time to read the whole book. I was one of the reviewers of the book but as a reviewer you don’t get all chapters for review.&lt;/p&gt;  &lt;p&gt;If you want to know more about Hyper-V and better understand its features and functionality I highly recommend this book. Look &lt;a href="http://www.microsoft.com/learning/en/us/book.aspx?ID=11842&amp;amp;locale=en-us"&gt;here&lt;/a&gt; for an outline of the chapters.&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3279782" width="1" height="1"&gt;</description></item><item><title>Hyper-V Server 2008 R2 is RTM</title><link>http://blogs.technet.com/matthts/archive/2009/07/31/hyper-v-server-2008-r2-is-rtm.aspx</link><pubDate>Fri, 31 Jul 2009 09:00:33 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3269575</guid><dc:creator>matthts</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/matthts/comments/3269575.aspx</comments><wfw:commentRss>http://blogs.technet.com/matthts/commentrss.aspx?PostID=3269575</wfw:commentRss><description>&lt;p&gt;Na Windows Server 2008 R2 en Windows 7 volgt nu ook de gratis server virtualisatie host in de R2 release.&lt;/p&gt;  &lt;p&gt;Nieuw ten opzichte van de RC release is de boot-from-flash mogelijkheid die hardware-leveranciers kunnen gebruiken om een geïntegreerde server-virtualisatie host te bieden.&lt;/p&gt;  &lt;p&gt;Zie verder &lt;a href="http://blogs.technet.com/virtualization/archive/2009/07/30/microsoft-hyper-v-server-2008-r2-rtm-more.aspx"&gt;hier&lt;/a&gt; voor alle details.&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3269575" width="1" height="1"&gt;</description></item><item><title>Windows Server 2008 R2 RTM</title><link>http://blogs.technet.com/matthts/archive/2009/07/23/windows-server-2008-r2-rtm.aspx</link><pubDate>Thu, 23 Jul 2009 08:06:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3267323</guid><dc:creator>matthts</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/matthts/comments/3267323.aspx</comments><wfw:commentRss>http://blogs.technet.com/matthts/commentrss.aspx?PostID=3267323</wfw:commentRss><description>&lt;P&gt;Yesterday, July 22nd, Windows 7 and Windows Server 2008 R2 were declared Released To Manufacturing (RTM).&lt;/P&gt;
&lt;P&gt;You can read more about the Windows 7 announcement at the Windows7 blog &lt;A href="http://windowsteamblog.com/blogs/windows7/archive/2009/07/22/windows-7-has-been-released-to-manufacturing.aspx" mce_href="http://windowsteamblog.com/blogs/windows7/archive/2009/07/22/windows-7-has-been-released-to-manufacturing.aspx"&gt;here&lt;/A&gt;. And more about the Windows Server 2008 R2 announcement &lt;A href="http://blogs.technet.com/windowsserver/archive/2009/07/22/windows-server-2008-r2-rtm.aspx" mce_href="http://blogs.technet.com/windowsserver/archive/2009/07/22/windows-server-2008-r2-rtm.aspx"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Regarding the virtualization capabilities in Windows Server 2008 R2, the virtualization team has created a great outline &lt;A href="http://blogs.technet.com/virtualization/" mce_href="http://blogs.technet.com/virtualization/"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3267323" width="1" height="1"&gt;</description></item><item><title>RC2 release of Linux IC’s</title><link>http://blogs.technet.com/matthts/archive/2009/07/23/rc2-release-of-linux-ic-s.aspx</link><pubDate>Thu, 23 Jul 2009 08:01:54 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3267320</guid><dc:creator>matthts</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/matthts/comments/3267320.aspx</comments><wfw:commentRss>http://blogs.technet.com/matthts/commentrss.aspx?PostID=3267320</wfw:commentRss><description>&lt;p&gt;The RC2 release of the Linux IC’s for Hyper-V have been released.&amp;#160; With this release, support for the following guest operating systems has been added:&lt;/p&gt;  &lt;p&gt;· Red Hat Enterprise Linux (5.2, x86/x64) &lt;/p&gt;  &lt;p&gt;· Red Hat Enterprise Linux (5.3, x86/x64)&lt;/p&gt;  &lt;p&gt;· SUSE Linux Enterprise Server 11 (x86/x64)&lt;/p&gt;  &lt;p&gt;Having support for Red Hat Enterprise Linux, one of the leaders in server-based Linux deployments, is significant. We’ve been working with Red Hat on the certification process to ensure support for Red Hat on Hyper-V. &lt;/p&gt;  &lt;p&gt;SUSE Linux Enterprise Server 11 is the latest version of the award-winning distribution, which includes advances in Green Computing and increased performance for interop with .NET applications.&lt;/p&gt;  &lt;p&gt;The integration components support the following virtualization platforms:&lt;/p&gt;  &lt;p&gt;· Windows Server® 2008 Standard, Enterprise, and Datacenter (x64 only)&lt;/p&gt;  &lt;p&gt;· Microsoft® Hyper-V Server 2008&lt;/p&gt;  &lt;p&gt;· Windows Server 2008 R2 Hyper-V RC (Build 7100) Standard, Enterprise, and Datacenter (x64 only)&lt;/p&gt;  &lt;p&gt;· Microsoft Hyper-V Server 2008 R2 RC (Build 7100)&lt;/p&gt;  &lt;p&gt;Having a single set of integration components supporting both releases of Hyper-V provides an easier administration and management experience for Hyper-V admins.&lt;/p&gt;  &lt;p&gt;Customers can obtain the Linux IC’s via access to the Microsoft Connect program: &lt;a href="https://connect.microsoft.com/SelfNomination.aspx?ProgramID=1863&amp;amp;pageType=1&amp;amp;SiteID=495"&gt;https://connect.microsoft.com/SelfNomination.aspx?ProgramID=1863&amp;amp;pageType=1&amp;amp;SiteID=495&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3267320" width="1" height="1"&gt;</description></item><item><title>Microsoft Contributes Linux Drivers to Linux Community</title><link>http://blogs.technet.com/matthts/archive/2009/07/23/microsoft-contributes-linux-drivers-to-linux-community.aspx</link><pubDate>Thu, 23 Jul 2009 08:01:23 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3267319</guid><dc:creator>matthts</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/matthts/comments/3267319.aspx</comments><wfw:commentRss>http://blogs.technet.com/matthts/commentrss.aspx?PostID=3267319</wfw:commentRss><description>&lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;REDMOND, Wash., July 20, 2009 — &lt;/strong&gt;Today, in a break from the ordinary, Microsoft released 20,000 lines of device driver code to the Linux community. The code, which includes three Linux device drivers, has been submitted to the Linux kernel community for inclusion in the Linux tree. The drivers will be available to the Linux community and customers alike, and will enhance the performance of the Linux operating system when virtualized on Windows Server 2008 Hyper-V or Windows Server 2008 R2 Hyper-V.&lt;/p&gt;  &lt;p&gt;…….&lt;/p&gt;  &lt;p&gt;For the remainder use link below.&lt;/p&gt;  &lt;p&gt;&lt;a title="http://www.microsoft.com/presspass/features/2009/Jul09/07-20LinuxQA.mspx" href="http://www.microsoft.com/presspass/features/2009/Jul09/07-20LinuxQA.mspx"&gt;http://www.microsoft.com/presspass/features/2009/Jul09/07-20LinuxQA.mspx&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3267319" width="1" height="1"&gt;</description></item><item><title>Windows Server 2008 R2 Beta</title><link>http://blogs.technet.com/matthts/archive/2009/01/12/windows-server-2008-r2-beta.aspx</link><pubDate>Mon, 12 Jan 2009 23:15:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3181316</guid><dc:creator>matthts</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/matthts/comments/3181316.aspx</comments><wfw:commentRss>http://blogs.technet.com/matthts/commentrss.aspx?PostID=3181316</wfw:commentRss><description>&lt;p&gt;Windows Server 2008 &lt;font color="#ff0000"&gt;R2&lt;/font&gt; is now publically available. Among the new features and many improvements is Hyper-V v2.&lt;/p&gt;  &lt;p&gt;Hyper-V v2 supports new features like Live Migration, storage hot-add/remove, Second Level Address Translation, TCP Offloading, VMQ (device queuing), Jumbo frames and processor core parking.&lt;/p&gt;  &lt;p&gt;It does however not support the ability to import Virtual Machines from Virtual Server. Therefore I am working on an updated release of the VMC2HV tool with support for Hyper-V v2.&lt;/p&gt;  &lt;p&gt;There are other changes and improvements which I will outline once it comes close to release. A screen shot is provided below to give an impression of the new UI.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/matthts/WindowsLiveWriter/WindowsServer2008R2Beta_12A85/vmc2hv-vnext_2.jpg"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="vmc2hv-vnext" border="0" alt="vmc2hv-vnext" src="http://blogs.technet.com/blogfiles/matthts/WindowsLiveWriter/WindowsServer2008R2Beta_12A85/vmc2hv-vnext_thumb.jpg" width="491" height="475" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3181316" width="1" height="1"&gt;</description></item><item><title>Windows Hyper-V Server 2008 is RTM</title><link>http://blogs.technet.com/matthts/archive/2008/10/01/windows-hyper-v-server-2008-is-rtm.aspx</link><pubDate>Wed, 01 Oct 2008 14:25:14 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3130698</guid><dc:creator>matthts</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/matthts/comments/3130698.aspx</comments><wfw:commentRss>http://blogs.technet.com/matthts/commentrss.aspx?PostID=3130698</wfw:commentRss><description>&lt;p&gt;Hyper-V Server 2008 is RTM. You can download it as of October 1st.&lt;/p&gt;  &lt;p&gt;Microsoft Hyper-V Server 2008 provides a simplified, reliable, and optimized virtualization solution, enabling improved server utilization and reduced costs. Since Hyper-V Server is a dedicated stand-alone product, which contains only the Windows Hypervisor, Windows Server driver model and virtualization components, it provides a small footprint and minimal overhead. It easily plugs into customers’ existing IT environments, leveraging their existing patching, provisioning, management, support tools, processes, and skills.&lt;/p&gt;  &lt;p&gt;You can find all info on Hyper-V Server &lt;a href="http://www.microsoft.com/servers/hyper-v-server/default.mspx"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3130698" width="1" height="1"&gt;</description></item><item><title>VMC to Hyper-V Import Tool Available</title><link>http://blogs.technet.com/matthts/archive/2008/09/12/vmc-to-hyper-v-import-tool-available.aspx</link><pubDate>Sat, 13 Sep 2008 00:48:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3123188</guid><dc:creator>matthts</dc:creator><slash:comments>32</slash:comments><comments>http://blogs.technet.com/matthts/comments/3123188.aspx</comments><wfw:commentRss>http://blogs.technet.com/matthts/commentrss.aspx?PostID=3123188</wfw:commentRss><description>&lt;p style="margin: 0cm 0cm 10pt" class="MsoNormal"&gt;&lt;shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f"&gt;&lt;stroke joinstyle="miter"&gt;&lt;/stroke&gt;&lt;formulas&gt;&lt;f eqn="if lineDrawn pixelLineWidth 0"&gt;&lt;/f&gt;&lt;f eqn="sum @0 1 0"&gt;&lt;/f&gt;&lt;f eqn="sum 0 0 @1"&gt;&lt;/f&gt;&lt;f eqn="prod @2 1 2"&gt;&lt;/f&gt;&lt;f eqn="prod @3 21600 pixelWidth"&gt;&lt;/f&gt;&lt;f eqn="prod @3 21600 pixelHeight"&gt;&lt;/f&gt;&lt;f eqn="sum @0 0 1"&gt;&lt;/f&gt;&lt;f eqn="prod @6 1 2"&gt;&lt;/f&gt;&lt;f eqn="prod @7 21600 pixelWidth"&gt;&lt;/f&gt;&lt;f eqn="sum @8 21600 0"&gt;&lt;/f&gt;&lt;f eqn="prod @7 21600 pixelHeight"&gt;&lt;/f&gt;&lt;f eqn="sum @10 21600 0"&gt;&lt;/f&gt;&lt;/formulas&gt;&lt;path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"&gt;&lt;/path&gt;&lt;lock v:ext="edit" aspectratio="t"&gt;&lt;/lock&gt;&lt;/shapetype&gt;&lt;shape style="z-index: 1; position: absolute; margin-top: -5.35pt; width: 63.4pt; height: 52.1pt; visibility: visible; margin-left: 380.05pt; mso-wrap-style: square; mso-wrap-distance-left: 9pt; mso-wrap-distance-top: 0; mso-wrap-distance-right: 9pt; mso-wrap-distance-bottom: 0; mso-position-horizontal: absolute; mso-position-horizontal-relative: text; mso-position-vertical: absolute; mso-position-vertical-relative: text" id="Picture_x0020_1" o:spid="_x0000_s1026" type="#_x0000_t75"&gt;&lt;imagedata mce_src="file:///C:\Users\matthts\AppData\Local\Temp\msohtmlclip1\01\clip_image001.png" src="file:///C:\Users\matthts\AppData\Local\Temp\msohtmlclip1\01\clip_image001.png" o:title="o:title"&gt;&lt;/imagedata&gt;&lt;wrap type="square"&gt;&lt;/wrap&gt;&lt;/shape&gt;&lt;span style="line-height: 115%; color: #4f81bd; font-size: 24pt; mso-themecolor: accent1"&gt;&lt;font size="5"&gt;&lt;font face="Calibri"&gt;&lt;strong&gt;VMC to Hyper-V Import Tool&lt;/strong&gt; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Now that we have launched the Microsoft Virtualization strategy this Monday, I wanted to release my tool so people could start using it to import their old Virtual Machine configurations. So first of all, what is the VMC to Hyper-V Import Tool and what was it intended for? &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;font color="#365f91" size="5" face="Cambria"&gt;The tool&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 10pt" class="MsoNormal"&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;VMC to Hyper-V Import Tool, VMC2HV for short, imports the configuration from a Virtual Machine Configuration (VMC) file. Both Virtual PC and Virtual Server use VMC files to store the hardware and other properties of a VM. It reads the VMC file and maps all relevant properties to those for a Hyper-V VM. For those properties that did not exist, it provides additional options. Those properties that no longer exist are ignored. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;VMC2HV was developed to ease the transition from Virtual Server to Hyper-V. As I explained in an earlier post, I was quite annoyed by the fact that I had to enter all hardware properties manually if I wanted to use the VHD files from the Virtual Server VM with the hardware settings as they were in the original VM. It really took a lot of time to get my VS VM’s under Hyper-V. So I did not want to do that again and decided to develop a tool that would import the properties for me (development of the tool took quite more time but it was fun…). &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;font color="#365f91" size="5" face="Cambria"&gt;Scope&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 10pt" class="MsoNormal"&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;The scope of the tool was initially to import Virtual Server VMC files. But some people also wanted to be able to import Virtual PC VMC files. So I did some additional testing with Virtual PC 2007 VMC files. It was not extensive but I did modify the code in several places to accommodate the differences between Virtual PC and Virtual Server. I did &lt;b style="mso-bidi-font-weight: normal"&gt;not&lt;/b&gt; specifically test Virtual PC 2004 VMC files. I imported several and it worked but I didn’t test those VMC files since the product has been superseded long ago. Basically the same is true for Virtual Server 2005 R2 SP1. I only tested VMC files under the latest release of Virtual Server 2005. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;h1 style="margin: 24pt 0cm 0pt"&gt;&lt;font color="#365f91" size="5" face="Cambria"&gt;Out of scope&lt;/font&gt;&lt;/h1&gt;  &lt;p style="margin: 0cm 0cm 10pt" class="MsoNormal"&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;The tool imports a VM configuration. This means it does nothing inside the VM like removing Virtual Machine Additions or installing Integration Components. I just want to make that clear to manage the expectations. Although uninstalling the Additions, installing the Integration Components and the process involved requires some work it is much less than reading the VMC file and searching and copying the hardware properties over to Hyper-V. If you want automatic removal of Additions and installation of Integration Components, use System Center Virtual Machine Manager (SCVMM) 2008. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;font color="#365f91" size="5" face="Cambria"&gt;Comparison with SCVMM&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 10pt" class="MsoNormal"&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;VMC2HV was never developed to replace the SCVMM functionality, as VMRCplus was never developed for the same reason. SCVMM is an enterprise class product which you should use to import, create and manage virtual machines. SCVMM can import the VMC file as well and provides some additional management functionality. VMC2HV basically does the same but was intended for people who do not (yet) have SCVMM. For example all people using Hyper-V on laptops or a couple of servers. Using SCVMM just for importing VMC files would be a bit too much of a step. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;font color="#365f91" size="5" face="Cambria"&gt;Features&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 10pt" class="MsoNormal"&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;So what does the tool offer? In a list of features: &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-family: symbol; font-size: 12pt; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol"&gt;&lt;span style="mso-list: ignore"&gt;·&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Import of VMC files of both VS2005 and VPC2007 &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-family: symbol; font-size: 12pt; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol"&gt;&lt;span style="mso-list: ignore"&gt;·&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Creation of VM on local Hyper-V host &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-family: symbol; font-size: 12pt; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol"&gt;&lt;span style="mso-list: ignore"&gt;·&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Creation of VM on remote Hyper-V host &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-family: symbol; font-size: 12pt; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol"&gt;&lt;span style="mso-list: ignore"&gt;·&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Validation of virtual disk and ISO files in local scenario &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-family: symbol; font-size: 12pt; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol"&gt;&lt;span style="mso-list: ignore"&gt;·&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Editing of virtual drive image paths (vhd, vfd, iso) &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-family: symbol; font-size: 12pt; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol"&gt;&lt;span style="mso-list: ignore"&gt;·&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Swapping of the first SCSI disk with the first IDE disk &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-family: symbol; font-size: 12pt; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol"&gt;&lt;span style="mso-list: ignore"&gt;·&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Specification of static MAC addresses &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-family: symbol; font-size: 12pt; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol"&gt;&lt;span style="mso-list: ignore"&gt;·&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Specification of either legacy (emulated) or enhanced network adapter &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-family: symbol; font-size: 12pt; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol"&gt;&lt;span style="mso-list: ignore"&gt;·&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Specification of # of virtual processors and resource control &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-family: symbol; font-size: 12pt; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol"&gt;&lt;span style="mso-list: ignore"&gt;·&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Specification of management settings &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-family: symbol; font-size: 12pt; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol"&gt;&lt;span style="mso-list: ignore"&gt;·&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Specification of COM ports &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-family: symbol; font-size: 12pt; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol"&gt;&lt;span style="mso-list: ignore"&gt;·&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Specification of device boot order &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-family: symbol; font-size: 12pt; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol"&gt;&lt;span style="mso-list: ignore"&gt;·&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Specification of alternate Virtual Machine path &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-family: symbol; font-size: 12pt; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol"&gt;&lt;span style="mso-list: ignore"&gt;·&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Built-in help in CHM file &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-family: symbol; font-size: 12pt; mso-fareast-font-family: symbol; mso-bidi-font-family: symbol"&gt;&lt;span style="mso-list: ignore"&gt;·&lt;span style="font: 7pt &amp;#39;Times New Roman&amp;#39;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Support for both x86 and x64 Vista and Server 2008 &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;As you can see, VMC2HV not only imports the configuration but lets you adjust almost any setting before creating the VM in Hyper-V. Several shortcut keys have been added to help speed the process if you only want to do an import-and-create of many VMC files. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;font color="#365f91" size="5" face="Cambria"&gt;Requirements&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 10pt" class="MsoNormal"&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;You can import VMC files from any file location. Then you can create the VM either locally or remotely. In the remote scenario, both the client where VMC2HV runs and the remote Hyper-V host must be in the same domain. Or alternatively, both client and remote Hyper-V host can exist in a workgroup but you need to use mirrored administrator accounts (both same administrator, same password). Other configurations simply do not work. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;The tool prevents importing VMC files which contain either saved state information or Undo disks. VM’s must be shut down and Undo disks must be committed or discarded.&lt;/font&gt;&lt;/span&gt; &lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;font color="#365f91" size="5" face="Cambria"&gt;Support&lt;/font&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 10pt" class="MsoNormal"&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;I hope it just works for you but I know there are always circumstances I did or could not test. If you run into issues with a VMC file, send me the file and I may look at it to see what causes problems. If the VMC file is from an old Virtual PC version, I prefer you open the VMC file in Virtual PC 2007 SP1 and save the configuration from there. It will be reformatted in Virtual PC 2007 layout and likely to solve any import issues. If you cannot, I can look into the specific issue. The same applies to old Virtual Server VMC file versions. If import fails when using the latest VMC files, send a copy to me. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;Before submitting any issues, please press F1 and see if your question is addressed in the help file. As the license agreement states, I may not support an issue at all or may not have the time. I will support on a best-effort basis.&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 10pt" class="MsoNormal"&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 10pt" class="MsoNormal"&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font color="#365f91" size="5" face="Cambria"&gt;Download&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 10pt" class="MsoNormal"&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font size="5" face="Cambria"&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;font face="Calibri"&gt;You can find both the x86 and x64 files &lt;a href="http://cid-7edf4c4ce8729f83.skydrive.live.com/self.aspx/Public/VMC2HV" mce_href="http://cid-7edf4c4ce8729f83.skydrive.live.com/self.aspx/Public/VMC2HV"&gt;here&lt;/a&gt;.&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;/p&gt;  &lt;p mce_keep="true"&gt;&amp;#160;&lt;/p&gt;  &lt;p style="margin: 0cm 0cm 10pt" class="MsoNormal"&gt;&lt;span style="line-height: 115%; font-size: 12pt"&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;font face="Calibri"&gt;&lt;/font&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3123188" width="1" height="1"&gt;</description></item><item><title>VMC to Hyper-V import tool - update</title><link>http://blogs.technet.com/matthts/archive/2008/08/27/vmc-to-hyper-v-import-tool-update.aspx</link><pubDate>Wed, 27 Aug 2008 23:31:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3112990</guid><dc:creator>matthts</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.technet.com/matthts/comments/3112990.aspx</comments><wfw:commentRss>http://blogs.technet.com/matthts/commentrss.aspx?PostID=3112990</wfw:commentRss><description>&lt;P&gt;It has been a while since my last post on the tool. It is still being tested within a limited group. However I get many requests for the tool but cannot handle any more. Thanks for all who wanted to volunteer.&lt;/P&gt;
&lt;P&gt;The tool will be called ‘VMC to Hyper-V import tool’, in short ‘VMC to Hyper-V’. This suggest it supports any VMC which is my goal but not yet true. The initial goal was to support import of Virtual Server VMC files as Hyper-V is a server product. But I intend to do some testing with VPC2007 VMC files as well.&lt;/P&gt;
&lt;P&gt;The name also contains ‘import’ instead of ‘migrate’. With importing you can repeat the step as often as you like and nothing in the original VMC file gets changed. With migrate there is usually some form of conversion and sometimes it is a no-way-back process. I think import better reflects the nature of the tool.&lt;/P&gt;
&lt;P&gt;There are a couple of small things on the todo list but they may not get into the first release. Things like Guest OS verification with regards to logical processor support or startup and shutdown behavior of the VM. I wonder if people often used the startup/shutdown behavior setting of the VM. If you do, let me know and I may try to add support for those settings.&lt;/P&gt;
&lt;P&gt;I plan to release the tool in September.&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3112990" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/matthts/archive/tags/VMC2Hyper-V/default.aspx">VMC2Hyper-V</category></item><item><title>VMC to Hyper-V migration tool</title><link>http://blogs.technet.com/matthts/archive/2008/07/11/vmc-to-hyper-v-migration-tool.aspx</link><pubDate>Fri, 11 Jul 2008 16:19:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3087362</guid><dc:creator>matthts</dc:creator><slash:comments>10</slash:comments><comments>http://blogs.technet.com/matthts/comments/3087362.aspx</comments><wfw:commentRss>http://blogs.technet.com/matthts/commentrss.aspx?PostID=3087362</wfw:commentRss><description>&lt;P&gt;Yet another update just before my vacation.&lt;/P&gt;
&lt;P&gt;I have finalized the tool so it is feature complete, according to my specifications. Below is a screen shot of what it looks like today.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/matthts/WindowsLiveWriter/VMCtoHyperVmigrationtool_D56E/vmc2hv-0.8_2.jpg" mce_href="http://blogs.technet.com/blogfiles/matthts/WindowsLiveWriter/VMCtoHyperVmigrationtool_D56E/vmc2hv-0.8_2.jpg"&gt;&lt;IMG title=vmc2hv-0.8 style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=378 alt=vmc2hv-0.8 src="http://blogs.technet.com/blogfiles/matthts/WindowsLiveWriter/VMCtoHyperVmigrationtool_D56E/vmc2hv-0.8_thumb.jpg" width=513 border=0 mce_src="http://blogs.technet.com/blogfiles/matthts/WindowsLiveWriter/VMCtoHyperVmigrationtool_D56E/vmc2hv-0.8_thumb.jpg"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The tool now basically covers everything there is you can specify in a Hyper-V vm. Looking at a Virtual Server or Virtual PC configuration file, all settings which can apply to a Hyper-V vm are imported and can be modified in the UI. &lt;BR&gt;Of course, BIOS settings like NumLock and boot order are Hyper-V specific but I added those for completeness. You can choose to have the SCSI boot disk swapped with the forst IDE disk. This is handy for those who have used SCSI with Virtual Server.&lt;/P&gt;
&lt;P&gt;The tool is now being tested within a closed group at Microsoft. After I return from vacation, I plan to release this as soon as possible.&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3087362" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/matthts/archive/tags/VMC2Hyper-V/default.aspx">VMC2Hyper-V</category></item></channel></rss>