<?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/"
		>
<channel>
	<title>Comments on: Guest VM Settings Migrator 1.0</title>
	<atom:link href="http://www.davidmarkley.com/vmware/guest-vm-settings-migrator-1-0/feed" rel="self" type="application/rss+xml" />
	<link>http://www.davidmarkley.com/vmware/guest-vm-settings-migrator-1-0</link>
	<description>Official Website of Me</description>
	<lastBuildDate>Sat, 30 Oct 2010 02:55:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: John</title>
		<link>http://www.davidmarkley.com/vmware/guest-vm-settings-migrator-1-0/comment-page-1#comment-136</link>
		<dc:creator>John</dc:creator>
		<pubDate>Sat, 09 Oct 2010 14:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidmarkley.com/?p=40#comment-136</guid>
		<description>This is great. Thanks for sharing it !</description>
		<content:encoded><![CDATA[<p>This is great. Thanks for sharing it !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: farewelldave</title>
		<link>http://www.davidmarkley.com/vmware/guest-vm-settings-migrator-1-0/comment-page-1#comment-119</link>
		<dc:creator>farewelldave</dc:creator>
		<pubDate>Fri, 30 Apr 2010 19:07:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidmarkley.com/?p=40#comment-119</guid>
		<description>Yes, I&#039;m sure that there are ways to make this better, but for the client I was working with at the time, this saved quite a bit of time, and proved a dirt-simple way to have quick access to the common processes used during VM Migration.</description>
		<content:encoded><![CDATA[<p>Yes, I&#39;m sure that there are ways to make this better, but for the client I was working with at the time, this saved quite a bit of time, and proved a dirt-simple way to have quick access to the common processes used during VM Migration.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan</title>
		<link>http://www.davidmarkley.com/vmware/guest-vm-settings-migrator-1-0/comment-page-1#comment-118</link>
		<dc:creator>Ivan</dc:creator>
		<pubDate>Wed, 17 Mar 2010 02:55:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidmarkley.com/?p=40#comment-118</guid>
		<description>Alon,&lt;br&gt;&lt;br&gt;Am i correct in saying that script is great providing you have not renamed your connection originally.</description>
		<content:encoded><![CDATA[<p>Alon,</p>
<p>Am i correct in saying that script is great providing you have not renamed your connection originally.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alon</title>
		<link>http://www.davidmarkley.com/vmware/guest-vm-settings-migrator-1-0/comment-page-1#comment-103</link>
		<dc:creator>Alon</dc:creator>
		<pubDate>Wed, 30 Dec 2009 13:23:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidmarkley.com/?p=40#comment-103</guid>
		<description>Hi,&lt;br&gt;&lt;br&gt;In order to handle the network connections names you can call the following script before the export and the import process:&lt;br&gt;&lt;br&gt;Const NETWORK_CONNECTIONS = &amp;H31&amp;&lt;br&gt;&lt;br&gt;strNetConnectionName = &quot;Local Area Connection&quot;&lt;br&gt;index = 1&lt;br&gt;&lt;br&gt;Set objShell = CreateObject(&quot;Shell.Application&quot;)&lt;br&gt;Set objFolder = objShell.Namespace(NETWORK_CONNECTIONS)&lt;br&gt;&lt;br&gt;Set colItems = objFolder.Items&lt;br&gt;For Each objItem in colItems&lt;br&gt;	If objItem.Name &lt;&gt; &quot;New Connection Wizard&quot; and objItem.Name &lt;&gt; &quot;Local Area Connection&quot; Then&lt;br&gt;   	    objItem.Name = strNetConnectionName &lt;br&gt;	    index = index + 1&lt;br&gt;	    strNetConnectionName = strNetConnectionName &amp; &quot; &quot; &amp; index&lt;br&gt;	End if&lt;br&gt;Next&lt;br&gt;&lt;br&gt;It will reset the network connection names.&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;Alon</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>In order to handle the network connections names you can call the following script before the export and the import process:</p>
<p>Const NETWORK_CONNECTIONS = &#038;H31&#038;</p>
<p>strNetConnectionName = &#8220;Local Area Connection&#8221;<br />index = 1</p>
<p>Set objShell = CreateObject(&#8220;Shell.Application&#8221;)<br />Set objFolder = objShell.Namespace(NETWORK_CONNECTIONS)</p>
<p>Set colItems = objFolder.Items<br />For Each objItem in colItems<br />	If objItem.Name &lt;&gt; &#8220;New Connection Wizard&#8221; and objItem.Name &lt;&gt; &#8220;Local Area Connection&#8221; Then<br />   	    objItem.Name = strNetConnectionName <br />	    index = index + 1<br />	    strNetConnectionName = strNetConnectionName &#038; &#8221; &#8221; &#038; index<br />	End if<br />Next</p>
<p>It will reset the network connection names.</p>
<p>Regards,<br />Alon</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alon</title>
		<link>http://www.davidmarkley.com/vmware/guest-vm-settings-migrator-1-0/comment-page-1#comment-86</link>
		<dc:creator>Alon</dc:creator>
		<pubDate>Wed, 30 Dec 2009 07:23:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidmarkley.com/?p=40#comment-86</guid>
		<description>Hi,&lt;br&gt;&lt;br&gt;In order to handle the network connections names you can call the following script before the export and the import process:&lt;br&gt;&lt;br&gt;Const NETWORK_CONNECTIONS = &amp;H31&amp;&lt;br&gt;&lt;br&gt;strNetConnectionName = &quot;Local Area Connection&quot;&lt;br&gt;index = 1&lt;br&gt;&lt;br&gt;Set objShell = CreateObject(&quot;Shell.Application&quot;)&lt;br&gt;Set objFolder = objShell.Namespace(NETWORK_CONNECTIONS)&lt;br&gt;&lt;br&gt;Set colItems = objFolder.Items&lt;br&gt;For Each objItem in colItems&lt;br&gt;	If objItem.Name &lt;&gt; &quot;New Connection Wizard&quot; and objItem.Name &lt;&gt; &quot;Local Area Connection&quot; Then&lt;br&gt;   	    objItem.Name = strNetConnectionName &lt;br&gt;	    index = index + 1&lt;br&gt;	    strNetConnectionName = strNetConnectionName &amp; &quot; &quot; &amp; index&lt;br&gt;	End if&lt;br&gt;Next&lt;br&gt;&lt;br&gt;It will reset the network connection names.&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;Alon</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>In order to handle the network connections names you can call the following script before the export and the import process:</p>
<p>Const NETWORK_CONNECTIONS = &#038;H31&#038;</p>
<p>strNetConnectionName = &#8220;Local Area Connection&#8221;<br />index = 1</p>
<p>Set objShell = CreateObject(&#8220;Shell.Application&#8221;)<br />Set objFolder = objShell.Namespace(NETWORK_CONNECTIONS)</p>
<p>Set colItems = objFolder.Items<br />For Each objItem in colItems<br />	If objItem.Name &lt;&gt; &#8220;New Connection Wizard&#8221; and objItem.Name &lt;&gt; &#8220;Local Area Connection&#8221; Then<br />   	    objItem.Name = strNetConnectionName <br />	    index = index + 1<br />	    strNetConnectionName = strNetConnectionName &#038; &#8221; &#8221; &#038; index<br />	End if<br />Next</p>
<p>It will reset the network connection names.</p>
<p>Regards,<br />Alon</p>
]]></content:encoded>
	</item>
</channel>
</rss>

