<?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>Danny Thorpe &#187; Remote Desktop</title>
	<atom:link href="http://dannythorpe.com/tag/remote-desktop/feed/" rel="self" type="application/rss+xml" />
	<link>http://dannythorpe.com</link>
	<description>Dream &#38; Deliver</description>
	<lastBuildDate>Wed, 04 Jan 2012 21:20:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using SecureCard and other devices with VirtualPC Virtual Machines</title>
		<link>http://dannythorpe.com/2009/10/20/using-securecard-and-other-devices-with-virtualpc-virtual-machines/</link>
		<comments>http://dannythorpe.com/2009/10/20/using-securecard-and-other-devices-with-virtualpc-virtual-machines/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 02:06:13 +0000</pubDate>
		<dc:creator>Danny Thorpe</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[remote access]]></category>
		<category><![CDATA[Remote Desktop]]></category>
		<category><![CDATA[SmartCard]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[VirtualPC]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://dannythorpe.com/2009/10/20/using-securecard-and-other-devices-with-virtualpc-virtual-machines/</guid>
		<description><![CDATA[One of the great things about using VirtualPC in software development and testing is that the VirtualPC &#8220;virtual machine&#8221; really only has one hardware configuration.  The virtual machine defines a virtual hard disk, virtual display, virtual network, and even its own virtual BIOS for booting up the virtual machine. The downside to that uniformity is <a href='http://dannythorpe.com/2009/10/20/using-securecard-and-other-devices-with-virtualpc-virtual-machines/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>One of the great things about using VirtualPC in software development and testing is that the VirtualPC &#8220;virtual machine&#8221; really only has one hardware configuration.  The virtual machine defines a virtual hard disk, virtual display, virtual network, and even its own virtual BIOS for booting up the virtual machine.</p>
<p>The downside to that uniformity is that the VM can&#8217;t access any kind of hardware on your real PC that is beyond what VirtualPC already knows about.  Sure, you can install device drivers in the VM, but those device drivers won&#8217;t be able to find their hardware because it doesn&#8217;t exist in the virtual machine.</p>
<p>For example, how do you plug a USB flash drive into your virtual machine?  Or how do you use your SmartCard reader to perform a secure login from your virtual machine?  You can&#8217;t.  At least, not using the VirtualPC terminal.</p>
<p>I stumbled into this sand trap when I was setting up a new VM and needed to pull source files from version control onto the VM.  The version control server (TFS) is on the private corporate network, but I&#8217;m not.  I normally access corpnet via a Virtual Private Network (VPN), which requires use of a SecureCard (encryption keys stored on your corporate photo ID badge) to log in.</p>
<p>One solution would be to pull the sources to my local hard disk across the VPN, then share those files using a network share so that the VM can see them. That would work if the VM only needed read-only access to the files, but since I would also be making changes to the source files inside the VM and from my local machine at the same time (multiple irons in the fire), sharing one copy of the source code wouldn&#8217;t work.</p>
<p>I could copy the source tree from the local drive into the VM&#8217;s local drive, but that just makes it harder to check in changes made to the files in the VM.</p>
<p>The ideal would be to configure the VM to connect to corpnet via VPN and pull the sources directly from version control.  Changes made to the sources in the VM could be checked in and managed independently of the source files on my local machine. But the VPN client requires access to the SmartCard reader to complete the VPN login, and the VM doesn&#8217;t have access to the SmartCard reader hardware.</p>
<p>Or does it?  Turns out, there is a way to do it.  Instead of using the VirtualPC terminal, use Remote Desktop to connect to the virtual machine.</p>
<p>Remote Desktop&#8217;s terminal window supports transporting certain kinds of device information from your local machine to the remote machine.  This allows you to print from an app on the remote machine and have it print on your local printer, for example, or access files on a USB drive plugged into the local machine.  The Remote Desktop client also supports sharing SmartCard reader access across the Remote Desktop connection.</p>
<p>Here&#8217;s how to set it up:</p>
<p>First you need to configure your VM to accept Remote Desktop connections.  Fire up the VM in the VirtualPC terminal, click on Start in the Windows task bar, right-click on My Computer, click on Advanced System Settings, and select the Remote tab.  Under Remote Desktop, select one of the two Allow settings depending on your needs, then click on Select Users and use the next dialog to add user accounts that can access that machine remotely.  Accounts with administrator privileges automatically have remote access once Remote Desktop access is allowed.</p>
<p>Make sure your virtual machine is set up for network access.  If the VM isn&#8217;t on the network, you can&#8217;t connect to it with Remote Desktop.  If you can open a browser in your VM and browse web sites, you&#8217;re good to go.</p>
<p>Make sure your virtual machine has a computer name.  You&#8217;ll be connecting to it by name (IP address also works, but less friendly), so make sure you know what its name is.  You can find (and change) the computer name on the My Computer properties page.  Make sure it is different from your local computer name.</p>
<p>Minimize the VirtualPC terminal window on your local desktop.  Launch Remote Desktop and type in the virtual machine&#8217;s computer name.  Click on Options to configure Remote Desktop.</p>
<p><img src="http://dannythorpe.com/wordpress/wp-content/uploads/2009/10/rdlogin.jpg" alt="Remote Desktop Login" /></p>
<p>Local device sharing is turned off by default in Remote Desktop. Click on the Local Resources tab, then on the More button near the bottom of the dialog:</p>
<p><img src="http://dannythorpe.com/wordpress/wp-content/uploads/2009/10/rdmore.jpg" alt="Local Devices and Resources" /></p>
<p>This will bring up the Local Devices and Resources selection dialog where you can select which local drives and devices to make available to the remote machine:</p>
<p><img src="http://dannythorpe.com/wordpress/wp-content/uploads/2009/10/capture.jpg" alt="Select local devices and resources" /></p>
<p>Check the Smart Cards checkbox to enable sharing your local SmartCard reader with the remote machine, then close the dialogs and click Connect on the original Remote Desktop dialog.</p>
<p>You should be prompted to log into the remote machine (log in with a user name and password on the virtual machine, not the local machine) and voila &#8211; you&#8217;re looking at your virtual machine through Remote Desktop&#8217;s eyes!</p>
<p>From here I can fire up my VPN client, connect the VM to corpnet using the SmartCard reader, and access the TFS server to manage source files in the VM directly.</p>
<p>Remote Desktop can share local printers, local disk drives and drive letter mapped network shares, serial ports, and SecureCard readers to the remote machine. It can also share some types of Plug N Play media devices such as digital cameras (to access image files on the camera via USB perhaps).  USB devices that don&#8217;t behave as a file device or as a printer probably won&#8217;t be shareable across the Remote Desktop connection. A USB webcam, for example, cannot be shared across a Remote Desktop connection.</p>
<p>Remote Desktop is by far my preferred client for working with VirtualPC VMs.  RD&#8217;s mouse, keyboard, and clipboard integration between the remote and local desktop is more seamless than the VirtualPC terminal and RD just feels snappier overall.</p>
<div style="text-align:center;width:100%;"><div style="margin:0px 0px 0px 0px;"><script type="text/javascript"><!--
google_ad_client = "ca-pub-0861479594738165";
/* End of Post */
google_ad_slot = "6510912161";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div></div><p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fdannythorpe.com%2F2009%2F10%2F20%2Fusing-securecard-and-other-devices-with-virtualpc-virtual-machines%2F&amp;counturl=http%3A%2F%2Fdannythorpe.com%2F2009%2F10%2F20%2Fusing-securecard-and-other-devices-with-virtualpc-virtual-machines%2F&amp;count=none&amp;text=Using%20SecureCard%20and%20other%20devices%20with%20VirtualPC%20Virtual%20Machines" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fdannythorpe.com%2F2009%2F10%2F20%2Fusing-securecard-and-other-devices-with-virtualpc-virtual-machines%2F&amp;counturl=http%3A%2F%2Fdannythorpe.com%2F2009%2F10%2F20%2Fusing-securecard-and-other-devices-with-virtualpc-virtual-machines%2F&amp;count=none&amp;text=Using%20SecureCard%20and%20other%20devices%20with%20VirtualPC%20Virtual%20Machines" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fdannythorpe.com%2F2009%2F10%2F20%2Fusing-securecard-and-other-devices-with-virtualpc-virtual-machines%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fdannythorpe.com%2F2009%2F10%2F20%2Fusing-securecard-and-other-devices-with-virtualpc-virtual-machines%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fdannythorpe.com%2F2009%2F10%2F20%2Fusing-securecard-and-other-devices-with-virtualpc-virtual-machines%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fdannythorpe.com%2F2009%2F10%2F20%2Fusing-securecard-and-other-devices-with-virtualpc-virtual-machines%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fdannythorpe.com%2F2009%2F10%2F20%2Fusing-securecard-and-other-devices-with-virtualpc-virtual-machines%2F&amp;title=Using%20SecureCard%20and%20other%20devices%20with%20VirtualPC%20Virtual%20Machines" id="wpa2a_4">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://dannythorpe.com/2009/10/20/using-securecard-and-other-devices-with-virtualpc-virtual-machines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hyper-V Remote Management:  Workgroup Vista Client to Domain-Bound Server</title>
		<link>http://dannythorpe.com/2008/06/21/hyper-v-remote-management-workgroup-vista-client-to-domain-bound-server/</link>
		<comments>http://dannythorpe.com/2008/06/21/hyper-v-remote-management-workgroup-vista-client-to-domain-bound-server/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 22:14:18 +0000</pubDate>
		<dc:creator>Danny Thorpe</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[Remote Desktop]]></category>
		<category><![CDATA[remote management]]></category>
		<category><![CDATA[telecommuting]]></category>
		<category><![CDATA[virtual machine]]></category>

		<guid isPermaLink="false">http://dannythorpe.com/2008/06/21/hyper-v-remote-management-workgroup-vista-client-to-domain-bound-server/</guid>
		<description><![CDATA[So here I am configuring my dev machine in Redmond from my laptop in my home office in Santa Cruz.  I&#8217;m all VPN&#8217;d and security card authenticated up the wazoo, installing this and configuring that on the dev machine via Remote Desktop.  (Praise be to RD!) I get Hyper-V set up on the dev machine so I <a href='http://dannythorpe.com/2008/06/21/hyper-v-remote-management-workgroup-vista-client-to-domain-bound-server/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>So here I am configuring my dev machine in Redmond from my laptop in my home office in Santa Cruz.  I&#8217;m all VPN&#8217;d and security card authenticated up the wazoo, installing this and configuring that on the dev machine via Remote Desktop.  (Praise be to RD!)</p>
<p>I get <a href="http://technet2.microsoft.com/windowsserver2008/en/library/eec0cc4c-9527-4be2-b2e2-001ad66699501033.mspx?mfr=true">Hyper-V</a> set up on the dev machine so I can create and destroy virtual machine configurations with impunity while developing and testing on beta stuff.  I create a new VM in Hyper-V, allocate some RAM and HD to it, and tell it to boot off the network so I can install a stock Vista configuration from corpnet (corpnet does have some pretty cool services now and then).  It boots up, and I can see in the little thumbnail that something is alive in there.</p>
<p>I need to open that VM in a console so I can drive it.  Connect to Virtual Machine&#8230;  bzzt!  Nope.  Unknown error.  Try again a different way.  Bzzt!  Nope.</p>
<p>Hmm.  Time to read the beta release notes.  Sure enough, there&#8217;s a one-liner in the readme:  Hyper-V does not support connecting to a virtual machine within the context of a Terminal Services (aka Remote Desktop) session.  Nuts.  Understandable, but not much help to me.</p>
<p>How to work around this?  Hyper-V was built with server management in mind, so perhaps the management piece could be installed on my Vista laptop and remotely connect to the virtual machine on the dev machine?  Bingo!  I busily install the Hyper-V tools on my Vista machine, fire up the app, and tell it to connect to the dev machine.</p>
<p>Bzzt!  &#8220;Not authorized.&#8221;</p>
<p>Uh-oh.  That&#8217;s not good, because for me anyway it&#8217;s never a short path to resolve authorization issues.</p>
<p>A quick web search later, I discover with delight that <a href="http://blogs.technet.com/jhoward/default.aspx">John Howard</a> has already covered this remote management of Hyper-V in exquisite detail, for several different machine and network configurations:  <a href="http://blogs.technet.com/jhoward/archive/2008/03/28/part-1-hyper-v-remote-management-you-do-not-have-the-requested-permission-to-complete-this-task-contact-the-administrator-of-the-authorization-policy-for-the-computer-computername.aspx">client and server in a workgroup network</a>, <a href="http://blogs.technet.com/jhoward/archive/2008/03/30/part-3-hyper-v-remote-management-you-do-not-have-the-requested-permission-to-complete-this-task-contact-the-administrator-of-the-authorization-policy-for-the-computer-computername.aspx">client and core server</a>, <a href="http://blogs.technet.com/jhoward/archive/2008/04/01/part-4-domain-joined-environment-hyper-v-remote-management-you-do-not-have-the-requested-permission-to-complete-this-task-contact-the-administrator-of-the-authorization-policy-for-the-computer-computername.aspx">client and server in a domain network</a>, and a <a href="http://blogs.technet.com/jhoward/archive/2008/04/04/part-5-domain-client-to-workgroup-server-hyper-v-remote-management-you-do-not-have-the-requested-permission-to-complete-this-task-contact-the-administrator-of-the-authorization-policy-for-the-computer-computername.aspx">domain client connecting to a workgroup server</a>.  Fabulous info, with detailed steps on how to solve this situation.</p>
<p>Naturally, none of those scenarios match my situation.  I have a workgroup client trying to connect to a domain-bound remote Hyper-V server.</p>
<p>I know exactly what the problem is.  Hyper-V uses the current user on the client machine as the login credentials on the server machine. (This may be because my login on the laptop has administrator rights, but I&#8217;m not willing to give that up to run this vm thing)  The problem is that my non-domain laptop login id will never be accepted by the domain-bound remote machine.</p>
<p>Or will it?</p>
<p>Most of John&#8217;s 4 scenarios are the same steps but with minor variations in where to apply what.  John&#8217;s scenario #5, domain client to workgroup server, contains a key step that provided an Aha! moment for me in solving my scenario.  John shows how to use the Win32 cmdkey utility to define a user id and password to use when making service API calls to a particular remote machine.  That&#8217;s what I needed to get my domain-bound remote dev machine to accept Hyper-V management API calls from my non-domain local machine.</p>
<p>Here are the steps I used to get this working:</p>
<ol>
<li><strong>Create a user account on the domain-bound Hyper-V server.</strong>  This user account should be a local user to that server, not a domain user.  It does not need administrator rights, and it does not need to match your login id on your local machine.  For illustration purposes, let&#8217;s call it &#8220;hyperdan&#8221; on &#8220;devmachine&#8221;.Note that John&#8217;s example creates a new user group so that rights can be assigned to the group (and all its members) rather than for each user one at a time.  Since this is my dev machine and I don&#8217;t anticipate ever needing to give anyone else Hyper-V admin rights on this machine, I skipped the group creation step.</li>
<li><strong>Enable Firewall WMI rules on server.</strong>  Same as John&#8217;s step 2 in his <a href="http://blogs.technet.com/jhoward/archive/2008/04/04/part-5-domain-client-to-workgroup-server-hyper-v-remote-management-you-do-not-have-the-requested-permission-to-complete-this-task-contact-the-administrator-of-the-authorization-policy-for-the-computer-computername.aspx">Part 5 post</a>.</li>
<li><strong>Allow authenticated DCOM access on server.</strong>  Same as John&#8217;s step 3, using the &#8220;hyperdan&#8221; id created above.</li>
<li><strong>Allow authenticated users access to remote WMI namespace on server.</strong> Same as John&#8217;s step 4, except that I used the user id directly instead of giving the rights to a user group that the user id is a member of.</li>
<li><strong>Configure AZMan on server.</strong> Same as John&#8217;s step 5, except I used the user id directly instead of the user group.</li>
<li><strong>Reboot Server.</strong>  Don&#8217;t skip this step.</li>
<li><strong>Create a firewall exception for MMC on client.</strong>  Same as John&#8217;s step 6.</li>
<li><strong>Allow annonymous callbacks on client.</strong> Same as John&#8217;s step 7.</li>
<li><strong>Set credentials for the remote server (on client).</strong> Same as John&#8217;s step 8, using &#8220;devmachine\hyperdan&#8221; as the remote machine and user id.</li>
<li><strong>Run Hyper-V Manager on client.</strong> Same as John&#8217;s step 9.</li>
</ol>
<p>If all you want to do is connect to a particular VM on the server, use vmconnect.exe in the Hyper-V program directory on the local machine.  Enter devmachine for the machine name.  Click on the Virtual Machine dropdown and wait a second or two for it to populate.  Select the VM you want and away you go!</p>
<p>Connecting directly to the VM using Hyper-V&#8217;s vmconnect is great for doing machine-level stuff like installing operating systems or anything else that requires a reboot.  Unlike Remote Desktop, which loses the connection when the machine reboots, the VMConnect console stays connected, showing you the BIOS POST and boot sequences.  How can it do that?  Because VMConnect is outside the virtual machine that&#8217;s being rebooted.  You&#8217;re connected to the hypervisor, which is always on and always watching as long as the physical machine is not powered down.</p>
<p>However, VMConnect is not as smooth as Remote Desktop / Terminal Services, presumeably because VMConnect does not have the benefit of intercepting high-level APIs like RD and TS.  VMConnect has only the BIOS and screen memory to track state changes in the VM.  Cursor movement and screen updates are jumpier/chunkier and integration with the local machine&#8217;s mouse cursor is not as seamless as Remote Desktop.  For example, VMConnect captures the mouse modally, requiring you to hit a keystroke to give the mouse back to the local (host) desktop. That&#8217;s fine for periodic maintenance and administration sorties, but for everyday operations that would drive me nuts.</p>
<p>But that&#8217;s ok, because a network-connected VM is like a normal machine in every way &#8211; including Remote Desktop connectivity.  Once I get the VM into a usable network-accessible state, I shut down the VM connection and fire up a regular Remote Desktop connection to the VM.  Here are the steps:</p>
<ol>
<li>Install the OS on the VM</li>
<li>Reboot the VM on the new OS</li>
<li>Join the VM to the corpnet domain with a new, unique machine name</li>
<li>Disable sleep on idle in the power management options</li>
<li>Enable Remote Desktop connections</li>
<li>Add your domain user id to the list of users allowed to RD into the VM</li>
<li>Close the VMConnection</li>
<li>Fire up a Remote Desktop connection to the VM</li>
</ol>
<p>Tada!</p>
<p>Many thanks to John Howard for laying out the many pieces needed to get this silly thing to work.</p>
<p><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fdannythorpe.com%2F2008%2F06%2F21%2Fhyper-v-remote-management-workgroup-vista-client-to-domain-bound-server%2F&amp;counturl=http%3A%2F%2Fdannythorpe.com%2F2008%2F06%2F21%2Fhyper-v-remote-management-workgroup-vista-client-to-domain-bound-server%2F&amp;count=none&amp;text=Hyper-V%20Remote%20Management%3A%20%20Workgroup%20Vista%20Client%20to%20Domain-Bound%20Server" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service twitter_tweet" src="http://platform.twitter.com/widgets/tweet_button.html?url=http%3A%2F%2Fdannythorpe.com%2F2008%2F06%2F21%2Fhyper-v-remote-management-workgroup-vista-client-to-domain-bound-server%2F&amp;counturl=http%3A%2F%2Fdannythorpe.com%2F2008%2F06%2F21%2Fhyper-v-remote-management-workgroup-vista-client-to-domain-bound-server%2F&amp;count=none&amp;text=Hyper-V%20Remote%20Management%3A%20%20Workgroup%20Vista%20Client%20to%20Domain-Bound%20Server" scrolling="no" style="border:none;overflow:hidden;width:55px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fdannythorpe.com%2F2008%2F06%2F21%2Fhyper-v-remote-management-workgroup-vista-client-to-domain-bound-server%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service google_plusone" src="https://plusone.google.com/u/0/_/%2B1/fastbutton?url=http%3A%2F%2Fdannythorpe.com%2F2008%2F06%2F21%2Fhyper-v-remote-management-workgroup-vista-client-to-domain-bound-server%2F&amp;size=medium&amp;count=false" scrolling="no" style="border:none;overflow:hidden;width:32px;height:20px"></iframe><!--<![endif]--><!--[if IE]><iframe frameborder="0" allowTransparency="true" class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fdannythorpe.com%2F2008%2F06%2F21%2Fhyper-v-remote-management-workgroup-vista-client-to-domain-bound-server%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><![endif]--><!--[if !IE]><!--><iframe class="addtoany_special_service facebook_like" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fdannythorpe.com%2F2008%2F06%2F21%2Fhyper-v-remote-management-workgroup-vista-client-to-domain-bound-server%2F&amp;layout=button_count&amp;show_faces=false&amp;width=75&amp;action=like&amp;colorscheme=light&amp;height=20&amp;ref=addtoany" scrolling="no" style="border:none;overflow:hidden;width:90px;height:21px"></iframe><!--<![endif]--><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fdannythorpe.com%2F2008%2F06%2F21%2Fhyper-v-remote-management-workgroup-vista-client-to-domain-bound-server%2F&amp;title=Hyper-V%20Remote%20Management%3A%20%20Workgroup%20Vista%20Client%20to%20Domain-Bound%20Server" id="wpa2a_8">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://dannythorpe.com/2008/06/21/hyper-v-remote-management-workgroup-vista-client-to-domain-bound-server/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  dannythorpe.com/tag/remote-desktop/feed/ ) in 0.37284 seconds, on Feb 7th, 2012 at 12:05 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 7th, 2012 at 1:05 pm UTC -->
