<?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>Techibee.com &#187; script to generate ILO information</title>
	<atom:link href="http://techibee.com/tag/script-to-generate-ilo-information/feed" rel="self" type="application/rss+xml" />
	<link>http://techibee.com</link>
	<description>A System Administrator&#039;s Blog</description>
	<lastBuildDate>Mon, 06 Feb 2012 09:40:40 +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>Powershell script to get ILO version and server model remotely</title>
		<link>http://techibee.com/general/powershell-script-to-get-ilo-version-and-server-model-remotely/572</link>
		<comments>http://techibee.com/general/powershell-script-to-get-ilo-version-and-server-model-remotely/572#comments</comments>
		<pubDate>Mon, 05 Jul 2010 17:08:58 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[script to generate ILO information]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=572</guid>
		<description><![CDATA[ILO(Integrated Lights-out)  is a technology that enables system administrators to remote control the server even when it is powered down. After reading my previous post on same ILO topic, one of my X-colleague contacted me for some readymade script which he can use to get the ILO version information. There this script took birth. This [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-5730"></div></div><p>ILO(Integrated Lights-out)  is a technology that enables system administrators to remote control the server even when it is powered down. After reading<a href="http://techibee.com/hardware/how-to-find-the-ilo-details-of-remote-server/155" target="_blank"> my previous post </a>on same ILO topic, one of my X-colleague contacted me for some readymade script which he can use to get the ILO version information. There this script took birth.</p>
<p>This scripts gets the ILO version of given remote server.</p>
<blockquote><p>$doc = New-object System.XML.XMLDocument<br />
$doc.Load(&#8220;<a href="http://server-ilo-name/xmldata?item=All">http://server-ilo-name/xmldata?item=All</a>&#8220;)<br />
write-host $doc.RIMP.MP.PN</p></blockquote>
<p>Similarly you know server model using below code</p>
<blockquote><p>$doc = New-object System.XML.XMLDocument<br />
$doc.Load(&#8220;<a href="http://server-ilo-name/xmldata?item=All">http://server-ilo-name/xmldata?item=All</a>&#8220;)<br />
write-host $doc.RIMP.HSI.SPN</p></blockquote>
<p>Hope this information helps you.</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/general/powershell-script-to-get-ilo-version-and-server-model-remotely/572/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

