<?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: PowerCLI: Local stored VM&#8217;s One-Liner</title>
	<atom:link href="http://www.virtu-al.net/2009/07/14/powercli-local-stored-vms-one-liner/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.virtu-al.net/2009/07/14/powercli-local-stored-vms-one-liner/</link>
	<description>Virtually everything is poshable</description>
	<lastBuildDate>Sat, 11 Feb 2012 00:31:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Neal</title>
		<link>http://www.virtu-al.net/2009/07/14/powercli-local-stored-vms-one-liner/#comment-3383</link>
		<dc:creator>Neal</dc:creator>
		<pubDate>Wed, 17 Nov 2010 20:22:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=774#comment-3383</guid>
		<description>What would the syntax look like to return results that did not contain &#039;local&#039; in the name?  Just the opposite of what you did above?

Thanks

Neal Edwards</description>
		<content:encoded><![CDATA[<p>What would the syntax look like to return results that did not contain &#8216;local&#8217; in the name?  Just the opposite of what you did above?</p>
<p>Thanks</p>
<p>Neal Edwards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Virtu-Al</title>
		<link>http://www.virtu-al.net/2009/07/14/powercli-local-stored-vms-one-liner/#comment-1088</link>
		<dc:creator>Virtu-Al</dc:creator>
		<pubDate>Tue, 29 Sep 2009 15:09:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=774#comment-1088</guid>
		<description>&lt;a href=&quot;#comment-1055&quot; rel=&quot;nofollow&quot;&gt;@Simon Price &lt;/a&gt; 
Thanks Simon, looks like there is a slight issue with this one as the object returned after the get-view does not contain the correct name, I have however modified it to create an easier funtion than the one I was using. Good job !</description>
		<content:encoded><![CDATA[<p><a href="#comment-1055" rel="nofollow">@Simon Price </a><br />
Thanks Simon, looks like there is a slight issue with this one as the object returned after the get-view does not contain the correct name, I have however modified it to create an easier funtion than the one I was using. Good job !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon Price</title>
		<link>http://www.virtu-al.net/2009/07/14/powercli-local-stored-vms-one-liner/#comment-1055</link>
		<dc:creator>Simon Price</dc:creator>
		<pubDate>Thu, 24 Sep 2009 12:44:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=774#comment-1055</guid>
		<description>Sorry .. the full solution:
get-datastore&#124;get-view &#124; ? {$_.summary.multiplehostaccess -eq $false} &#124; select @{n=&quot;DS: Name&quot;;e={$_.name}},@{n=&quot;DS: Shared&quot;;e={$_.summary.multiplehostaccess}} &#124; % {get-vm -datastore $_.&quot;ds: name&quot;&#124;get-harddisk&#124;select @{n=&quot;Datastore&quot;;e={$_.filename.split(&quot;[]&quot;)[1]}},@{n=&quot;Filename&quot;;e={$_.filename.split(&quot;[]&quot;)[2]}},@{n=&quot;CapacityGB&quot;;e={&quot;{0:n2}&quot; -f ($_.capacitykb/1mb)}}}</description>
		<content:encoded><![CDATA[<p>Sorry .. the full solution:<br />
get-datastore|get-view | ? {$_.summary.multiplehostaccess -eq $false} | select @{n=&#8221;DS: Name&#8221;;e={$_.name}},@{n=&#8221;DS: Shared&#8221;;e={$_.summary.multiplehostaccess}} | % {get-vm -datastore $_.&#8221;ds: name&#8221;|get-harddisk|select @{n=&#8221;Datastore&#8221;;e={$_.filename.split(&#8220;[]&#8220;)[1]}},@{n=&#8221;Filename&#8221;;e={$_.filename.split(&#8220;[]&#8220;)[2]}},@{n=&#8221;CapacityGB&#8221;;e={&#8220;{0:n2}&#8221; -f ($_.capacitykb/1mb)}}}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon Price</title>
		<link>http://www.virtu-al.net/2009/07/14/powercli-local-stored-vms-one-liner/#comment-1054</link>
		<dc:creator>Simon Price</dc:creator>
		<pubDate>Thu, 24 Sep 2009 12:10:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=774#comment-1054</guid>
		<description>A way of searching for shared datstores is as follows:
get-datastore&#124;get-view &#124; ? {$_.summary.multiplehostaccess -eq $false} &#124; select @{n=&quot;DS: Name&quot;;e={$_.name}},@{n=&quot;DS: Shared&quot;;e={$_.summary.multiplehostaccess}}
This will display any datastore that is only accessible by a single host, regardless of the friendly name.
Cheers,
Simon P</description>
		<content:encoded><![CDATA[<p>A way of searching for shared datstores is as follows:<br />
get-datastore|get-view | ? {$_.summary.multiplehostaccess -eq $false} | select @{n=&#8221;DS: Name&#8221;;e={$_.name}},@{n=&#8221;DS: Shared&#8221;;e={$_.summary.multiplehostaccess}}<br />
This will display any datastore that is only accessible by a single host, regardless of the friendly name.<br />
Cheers,<br />
Simon P</p>
]]></content:encoded>
	</item>
</channel>
</rss>

