<?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: Host Hardware One-Liner</title>
	<atom:link href="http://www.virtu-al.net/2009/07/08/powercli-host-hardware-one-liner/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.virtu-al.net/2009/07/08/powercli-host-hardware-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: chad king</title>
		<link>http://www.virtu-al.net/2009/07/08/powercli-host-hardware-one-liner/#comment-6985</link>
		<dc:creator>chad king</dc:creator>
		<pubDate>Fri, 08 Jul 2011 19:52:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=753#comment-6985</guid>
		<description>Hey man,
Saved again by your amazing scripts.  You should really add this to the vmware community powerpack.  Hell I would would If I knew how.  I really need this information for &quot;socket&quot; licensing stuff. lol.</description>
		<content:encoded><![CDATA[<p>Hey man,<br />
Saved again by your amazing scripts.  You should really add this to the vmware community powerpack.  Hell I would would If I knew how.  I really need this information for &#8220;socket&#8221; licensing stuff. lol.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daryl</title>
		<link>http://www.virtu-al.net/2009/07/08/powercli-host-hardware-one-liner/#comment-2495</link>
		<dc:creator>Daryl</dc:creator>
		<pubDate>Tue, 13 Jul 2010 21:08:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=753#comment-2495</guid>
		<description>Anyone figure out how to get the host&#039;s serial number?  I can see it in VC under the hosts&#039; &#039;Hardware Status&#039; &#039;System summary&#039; information.</description>
		<content:encoded><![CDATA[<p>Anyone figure out how to get the host&#8217;s serial number?  I can see it in VC under the hosts&#8217; &#8216;Hardware Status&#8217; &#8216;System summary&#8217; information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Virtu-Al</title>
		<link>http://www.virtu-al.net/2009/07/08/powercli-host-hardware-one-liner/#comment-1612</link>
		<dc:creator>Virtu-Al</dc:creator>
		<pubDate>Fri, 18 Dec 2009 14:00:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=753#comment-1612</guid>
		<description>Unfortunatly the serial number is a bit of a pain as different vendors put it in different places, have you checked Carters CIM script ?</description>
		<content:encoded><![CDATA[<p>Unfortunatly the serial number is a bit of a pain as different vendors put it in different places, have you checked Carters CIM script ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WB</title>
		<link>http://www.virtu-al.net/2009/07/08/powercli-host-hardware-one-liner/#comment-1601</link>
		<dc:creator>WB</dc:creator>
		<pubDate>Wed, 16 Dec 2009 16:24:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=753#comment-1601</guid>
		<description>Can we return the hosts hardware serial number too?</description>
		<content:encoded><![CDATA[<p>Can we return the hosts hardware serial number too?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Virtu-Al</title>
		<link>http://www.virtu-al.net/2009/07/08/powercli-host-hardware-one-liner/#comment-776</link>
		<dc:creator>Virtu-Al</dc:creator>
		<pubDate>Wed, 12 Aug 2009 18:32:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=753#comment-776</guid>
		<description>&lt;a href=&quot;#comment-751&quot; rel=&quot;nofollow&quot;&gt;@Mark M &lt;/a&gt; 
Not in front of my VI at the moment but try this:

Get-VMHost &#124;Sort Name &#124;Get-View &#124;
Select @{N=“DataCenter“;E={Get-VMHost $_ &#124; Get-Datacenter}}, Name, 
@{N=“Type“;E={$_.Hardware.SystemInfo.Vendor+ “ “ + $_.Hardware.SystemInfo.Model}},
@{N=“CPU“;E={“PROC:“ + $_.Hardware.CpuInfo.NumCpuPackages + “ CORES:“ + $_.Hardware.CpuInfo.NumCpuCores + “ MHZ: “ + [math]::round($_.Hardware.CpuInfo.Hz / 1000000, 0)}},
@{N=“MEM“;E={“” + [math]::round($_.Hardware.MemorySize / 1GB, 0) + “ GB“}} &#124; Export-Csv c:\hostinfo.csv</description>
		<content:encoded><![CDATA[<p><a href="#comment-751" rel="nofollow">@Mark M </a><br />
Not in front of my VI at the moment but try this:</p>
<p>Get-VMHost |Sort Name |Get-View |<br />
Select @{N=“DataCenter“;E={Get-VMHost $_ | Get-Datacenter}}, Name,<br />
@{N=“Type“;E={$_.Hardware.SystemInfo.Vendor+ “ “ + $_.Hardware.SystemInfo.Model}},<br />
@{N=“CPU“;E={“PROC:“ + $_.Hardware.CpuInfo.NumCpuPackages + “ CORES:“ + $_.Hardware.CpuInfo.NumCpuCores + “ MHZ: “ + [math]::round($_.Hardware.CpuInfo.Hz / 1000000, 0)}},<br />
@{N=“MEM“;E={“” + [math]::round($_.Hardware.MemorySize / 1GB, 0) + “ GB“}} | Export-Csv c:\hostinfo.csv</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark M</title>
		<link>http://www.virtu-al.net/2009/07/08/powercli-host-hardware-one-liner/#comment-751</link>
		<dc:creator>Mark M</dc:creator>
		<pubDate>Tue, 04 Aug 2009 02:39:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=753#comment-751</guid>
		<description>How can I get the datacenter where the hardware resides?</description>
		<content:encoded><![CDATA[<p>How can I get the datacenter where the hardware resides?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pycc 3ona - Новости &#187; Blog Archive &#187; Virtu-Al » PowerCLI: Host Hardware One-Liner</title>
		<link>http://www.virtu-al.net/2009/07/08/powercli-host-hardware-one-liner/#comment-587</link>
		<dc:creator>Pycc 3ona - Новости &#187; Blog Archive &#187; Virtu-Al » PowerCLI: Host Hardware One-Liner</dc:creator>
		<pubDate>Thu, 09 Jul 2009 04:33:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=753#comment-587</guid>
		<description>[...] post:  Virtu-Al » PowerCLI: Host Hardware One-Liner   [...]</description>
		<content:encoded><![CDATA[<p>[...] post:  Virtu-Al » PowerCLI: Host Hardware One-Liner   [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

