<?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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments on: Wee bit of VMware PowerShell &#8211; Standard vSwitches</title>
	<atom:link href="http://www.rtfm-ed.co.uk/2009/08/12/wee-bit-of-vmware-powershell-standard-vswitches/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rtfm-ed.co.uk/2009/08/12/wee-bit-of-vmware-powershell-standard-vswitches/</link>
	<description>Beyond the Manual, with Mike Laverick (VCI, VCP, CCI, CCEA, MCT, MCSE)</description>
	<lastBuildDate>Tue, 07 Feb 2012 21:25:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Mike Laverick</title>
		<link>http://www.rtfm-ed.co.uk/2009/08/12/wee-bit-of-vmware-powershell-standard-vswitches/comment-page-1/#comment-38380</link>
		<dc:creator>Mike Laverick</dc:creator>
		<pubDate>Thu, 10 Sep 2009 11:37:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtfm-ed.co.uk/?p=1514#comment-38380</guid>
		<description>I&#039;ve been looking at the New-VMHostNetworkAdapter cmd-let which is how you enable VMotion with PowerShell - but it doesn&#039;t have switch to do that. The next step is TRYING to locate the FT Logging option in the SDK. I&#039;m going hunting... will report back if I find it...</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been looking at the New-VMHostNetworkAdapter cmd-let which is how you enable VMotion with PowerShell &#8211; but it doesn&#8217;t have switch to do that. The next step is TRYING to locate the FT Logging option in the SDK. I&#8217;m going hunting&#8230; will report back if I find it&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.rtfm-ed.co.uk/2009/08/12/wee-bit-of-vmware-powershell-standard-vswitches/comment-page-1/#comment-38378</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 10 Sep 2009 08:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtfm-ed.co.uk/?p=1514#comment-38378</guid>
		<description>Great article.

Did you already found out how to enable FT logging on the vmk?
We were looking to enable it via vmware-vim-cmd (as for vmotion) but apparantly there is no syntax foreseen?
So maybe PS is capable of enabling it?

Cheers,

David</description>
		<content:encoded><![CDATA[<p>Great article.</p>
<p>Did you already found out how to enable FT logging on the vmk?<br />
We were looking to enable it via vmware-vim-cmd (as for vmotion) but apparantly there is no syntax foreseen?<br />
So maybe PS is capable of enabling it?</p>
<p>Cheers,</p>
<p>David</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kayser Soze</title>
		<link>http://www.rtfm-ed.co.uk/2009/08/12/wee-bit-of-vmware-powershell-standard-vswitches/comment-page-1/#comment-37593</link>
		<dc:creator>Kayser Soze</dc:creator>
		<pubDate>Tue, 18 Aug 2009 02:25:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtfm-ed.co.uk/?p=1514#comment-37593</guid>
		<description>Thanks for the update...just what I was looking for.</description>
		<content:encoded><![CDATA[<p>Thanks for the update&#8230;just what I was looking for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kayser Soze</title>
		<link>http://www.rtfm-ed.co.uk/2009/08/12/wee-bit-of-vmware-powershell-standard-vswitches/comment-page-1/#comment-37503</link>
		<dc:creator>Kayser Soze</dc:creator>
		<pubDate>Thu, 13 Aug 2009 00:23:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtfm-ed.co.uk/?p=1514#comment-37503</guid>
		<description>Hi Mike, what about adding a network policy on the vswitch/portgroup? i.e. IP hash, failover, etc?</description>
		<content:encoded><![CDATA[<p>Hi Mike, what about adding a network policy on the vswitch/portgroup? i.e. IP hash, failover, etc?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jason myerholtz</title>
		<link>http://www.rtfm-ed.co.uk/2009/08/12/wee-bit-of-vmware-powershell-standard-vswitches/comment-page-1/#comment-37499</link>
		<dc:creator>jason myerholtz</dc:creator>
		<pubDate>Wed, 12 Aug 2009 16:55:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtfm-ed.co.uk/?p=1514#comment-37499</guid>
		<description>sorry one last thought

$x = 101
Foreach ($vmhost in (get-vmhost))
{
$vs =  New-VirtualSwitch -VMHost $vmHost -Name vSwitch2 -nic vmnic3
$VMotion =  New-VirtualPortGroup -VirtualSwitch $vs -Name VMotion

New-VMHostNetworkAdapter -VMHost (Get-VMHost esx1.vi4book.com) -PortGroup VMotion -VirtualSwitch $vs -IP $x -SubnetMask 255.255.255.0 -VMotionEnabled: $true
$x++
New-VMHostNetworkAdapter -VMHost (Get-VMHost esx2.vi4book.com) -PortGroup VMotion -VirtualSwitch $vs -IP $x -SubnetMask 255.255.255.0 -VMotionEnabled:$true
$x++
New-VMHostNetworkAdapter -VMHost (Get-VMHost esx3.vi4book.com) -PortGroup VMotion -VirtualSwitch $vs -IP $x -SubnetMask 255.255.255.0 -VMotionEnabled:$true
$x++
New-VMHostNetworkAdapter -VMHost (Get-VMHost esx4.vi4book.com) -PortGroup VMotion -VirtualSwitch $vs -IP $x -SubnetMask 255.255.255.0 -VMotionEnabled:$true
}</description>
		<content:encoded><![CDATA[<p>sorry one last thought</p>
<p>$x = 101<br />
Foreach ($vmhost in (get-vmhost))<br />
{<br />
$vs =  New-VirtualSwitch -VMHost $vmHost -Name vSwitch2 -nic vmnic3<br />
$VMotion =  New-VirtualPortGroup -VirtualSwitch $vs -Name VMotion</p>
<p>New-VMHostNetworkAdapter -VMHost (Get-VMHost esx1.vi4book.com) -PortGroup VMotion -VirtualSwitch $vs -IP $x -SubnetMask 255.255.255.0 -VMotionEnabled: $true<br />
$x++<br />
New-VMHostNetworkAdapter -VMHost (Get-VMHost esx2.vi4book.com) -PortGroup VMotion -VirtualSwitch $vs -IP $x -SubnetMask 255.255.255.0 -VMotionEnabled:$true<br />
$x++<br />
New-VMHostNetworkAdapter -VMHost (Get-VMHost esx3.vi4book.com) -PortGroup VMotion -VirtualSwitch $vs -IP $x -SubnetMask 255.255.255.0 -VMotionEnabled:$true<br />
$x++<br />
New-VMHostNetworkAdapter -VMHost (Get-VMHost esx4.vi4book.com) -PortGroup VMotion -VirtualSwitch $vs -IP $x -SubnetMask 255.255.255.0 -VMotionEnabled:$true<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jason myerholtz</title>
		<link>http://www.rtfm-ed.co.uk/2009/08/12/wee-bit-of-vmware-powershell-standard-vswitches/comment-page-1/#comment-37497</link>
		<dc:creator>jason myerholtz</dc:creator>
		<pubDate>Wed, 12 Aug 2009 16:39:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtfm-ed.co.uk/?p=1514#comment-37497</guid>
		<description>just set $x to equal your start... so in your case
 $x = 101</description>
		<content:encoded><![CDATA[<p>just set $x to equal your start&#8230; so in your case<br />
 $x = 101</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jason myerholtz</title>
		<link>http://www.rtfm-ed.co.uk/2009/08/12/wee-bit-of-vmware-powershell-standard-vswitches/comment-page-1/#comment-37496</link>
		<dc:creator>jason myerholtz</dc:creator>
		<pubDate>Wed, 12 Aug 2009 16:36:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtfm-ed.co.uk/?p=1514#comment-37496</guid>
		<description>below is not tested but should work just fine

$x = 0
Foreach ($vmhost in (get-vmhost))
{
$vs =  New-VirtualSwitch -VMHost $vmHost -Name vSwitch2 -nic vmnic3
$VMotion =  New-VirtualPortGroup -VirtualSwitch $vs -Name VMotion

New-VMHostNetworkAdapter -VMHost $vmhost.name -PortGroup VMotion -VirtualSwitch $vs -IP 10.0.0.$x -SubnetMask 255.255.255.0 -VMotionEnabled: $true
$x++
}</description>
		<content:encoded><![CDATA[<p>below is not tested but should work just fine</p>
<p>$x = 0<br />
Foreach ($vmhost in (get-vmhost))<br />
{<br />
$vs =  New-VirtualSwitch -VMHost $vmHost -Name vSwitch2 -nic vmnic3<br />
$VMotion =  New-VirtualPortGroup -VirtualSwitch $vs -Name VMotion</p>
<p>New-VMHostNetworkAdapter -VMHost $vmhost.name -PortGroup VMotion -VirtualSwitch $vs -IP 10.0.0.$x -SubnetMask 255.255.255.0 -VMotionEnabled: $true<br />
$x++<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hal Rottenberg</title>
		<link>http://www.rtfm-ed.co.uk/2009/08/12/wee-bit-of-vmware-powershell-standard-vswitches/comment-page-1/#comment-37492</link>
		<dc:creator>Hal Rottenberg</dc:creator>
		<pubDate>Wed, 12 Aug 2009 16:14:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtfm-ed.co.uk/?p=1514#comment-37492</guid>
		<description>Or this:

1..4 &#124; Foreach-Object {
New-VMHostNetworkAdapter -VMHost (Get-VMHost esx1.vi4book.com) -PortGroup VMotion -VirtualSwitch $vs -IP &quot;10.0.0.10$_&quot; -SubnetMask 255.255.255.0 -VMotionEnabled: $true
 }</description>
		<content:encoded><![CDATA[<p>Or this:</p>
<p>1..4 | Foreach-Object {<br />
New-VMHostNetworkAdapter -VMHost (Get-VMHost esx1.vi4book.com) -PortGroup VMotion -VirtualSwitch $vs -IP &#8220;10.0.0.10$_&#8221; -SubnetMask 255.255.255.0 -VMotionEnabled: $true<br />
 }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Laverick</title>
		<link>http://www.rtfm-ed.co.uk/2009/08/12/wee-bit-of-vmware-powershell-standard-vswitches/comment-page-1/#comment-37491</link>
		<dc:creator>Mike Laverick</dc:creator>
		<pubDate>Wed, 12 Aug 2009 16:06:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtfm-ed.co.uk/?p=1514#comment-37491</guid>
		<description>Yeah, that works for me in the sense that it outputs the numbers I need, but I&#039;m sure how I would add this foreach loop into the existing vmotion powershell...</description>
		<content:encoded><![CDATA[<p>Yeah, that works for me in the sense that it outputs the numbers I need, but I&#8217;m sure how I would add this foreach loop into the existing vmotion powershell&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jason myerholtz</title>
		<link>http://www.rtfm-ed.co.uk/2009/08/12/wee-bit-of-vmware-powershell-standard-vswitches/comment-page-1/#comment-37487</link>
		<dc:creator>jason myerholtz</dc:creator>
		<pubDate>Wed, 12 Aug 2009 13:53:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtfm-ed.co.uk/?p=1514#comment-37487</guid>
		<description>for the vmotion script..

foreach ($ip in 1..5){echo 169.82.115.$ip}
or 
$x=1
foreach ($i in 1..5){
echo 169.82.115.$x
$x++}</description>
		<content:encoded><![CDATA[<p>for the vmotion script..</p>
<p>foreach ($ip in 1..5){echo 169.82.115.$ip}<br />
or<br />
$x=1<br />
foreach ($i in 1..5){<br />
echo 169.82.115.$x<br />
$x++}</p>
]]></content:encoded>
	</item>
</channel>
</rss>

