<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic script to send the start command to the ILO in Server Management - Systems Insight Manager</title>
    <link>https://community.hpe.com/t5/server-management-systems/script-to-send-the-start-command-to-the-ilo/m-p/4246492#M62152</link>
    <description>I'm looking to create a script that I can use to send the start command to multiple ILO's. &lt;BR /&gt;&lt;BR /&gt; Basically what I'm looking at doing is Greening our server room by shutting down servers not used at night and I'd like to use a script to turn the servers back on at say 5AM utilizing the HP ILO.   Any help is greatly appreciated&lt;BR /&gt;Thanks</description>
    <pubDate>Tue, 05 Aug 2008 14:10:37 GMT</pubDate>
    <dc:creator>Richard Paradis</dc:creator>
    <dc:date>2008-08-05T14:10:37Z</dc:date>
    <item>
      <title>script to send the start command to the ILO</title>
      <link>https://community.hpe.com/t5/server-management-systems/script-to-send-the-start-command-to-the-ilo/m-p/4246492#M62152</link>
      <description>I'm looking to create a script that I can use to send the start command to multiple ILO's. &lt;BR /&gt;&lt;BR /&gt; Basically what I'm looking at doing is Greening our server room by shutting down servers not used at night and I'd like to use a script to turn the servers back on at say 5AM utilizing the HP ILO.   Any help is greatly appreciated&lt;BR /&gt;Thanks</description>
      <pubDate>Tue, 05 Aug 2008 14:10:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/script-to-send-the-start-command-to-the-ilo/m-p/4246492#M62152</guid>
      <dc:creator>Richard Paradis</dc:creator>
      <dc:date>2008-08-05T14:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: script to send the start command to the ILO</title>
      <link>https://community.hpe.com/t5/server-management-systems/script-to-send-the-start-command-to-the-ilo/m-p/4246493#M62153</link>
      <description>There already is a tool in HP SIM that lets you do that.  Select Tools --&amp;gt; Management Processor --&amp;gt; HP ProLiant iLO --&amp;gt; Power On.  Through the wizard select the iLOs of the machines you want to turn on and instead of selecting [Run Now] at the end, use the [Schedule] button to run the command against all of them every day at 5AM.</description>
      <pubDate>Tue, 05 Aug 2008 17:36:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/script-to-send-the-start-command-to-the-ilo/m-p/4246493#M62153</guid>
      <dc:creator>David Claypool</dc:creator>
      <dc:date>2008-08-05T17:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: script to send the start command to the ILO</title>
      <link>https://community.hpe.com/t5/server-management-systems/script-to-send-the-start-command-to-the-ilo/m-p/4246494#M62154</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;i'm using this scripts to power on-off multiple server via iLO ;-)</description>
      <pubDate>Fri, 08 Aug 2008 10:03:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/script-to-send-the-start-command-to-the-ilo/m-p/4246494#M62154</guid>
      <dc:creator>Paede</dc:creator>
      <dc:date>2008-08-08T10:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: script to send the start command to the ILO</title>
      <link>https://community.hpe.com/t5/server-management-systems/script-to-send-the-start-command-to-the-ilo/m-p/4246495#M62155</link>
      <description>Hmm, "zip" attachment does not work :-( &lt;BR /&gt;&lt;BR /&gt;here is the "power-on script":&lt;BR /&gt;@echo off&lt;BR /&gt;set iLO_uN=username&lt;BR /&gt;set iLO_PW=password&lt;BR /&gt;set iLO_XML=Set_Host_Power_on.xml&lt;BR /&gt;for %%i in (&lt;BR /&gt;10.0.0.1&lt;BR /&gt;10.0.0.2&lt;BR /&gt;10.0.0.3&lt;BR /&gt;10.0.0.4&lt;BR /&gt;) do (CPQLOCFG.EXE -s %%i -f %iLO_XML% -u %iLO_uN% -p %iLO_PW%)&lt;BR /&gt;&lt;BR /&gt;and here the XML file:&lt;BR /&gt;&lt;RIBCL version="2.0"&gt;&lt;BR /&gt;  &lt;LOGIN user_login="adminname" password="password"&gt;&lt;BR /&gt;  &lt;SERVER_INFO mode="write"&gt;&lt;BR /&gt;    &lt;!-- Modify the HOST_POWER attribute to toggle power on the host server --&gt;&lt;BR /&gt;    &lt;!-- HOST_POWER="No"  (Turns host server power off)              --&gt;&lt;BR /&gt;    &lt;!-- A graceful shutdown will be attempted for ACPI-aware        --&gt;&lt;BR /&gt;    &lt;!-- operating systems configured to support graceful shutdown.  --&gt;&lt;BR /&gt;    &lt;!-- HOST_POWER="Yes" (Turns host server power on) --&gt;&lt;BR /&gt;    &lt;SET_HOST_POWER host_power="Yes"&gt;&lt;/SET_HOST_POWER&gt;&lt;BR /&gt;  &lt;/SERVER_INFO&gt;&lt;BR /&gt;  &lt;/LOGIN&gt;&lt;BR /&gt;&lt;/RIBCL&gt;&lt;BR /&gt;&lt;BR /&gt;hope this helps. Paede ;-)</description>
      <pubDate>Fri, 08 Aug 2008 10:08:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/script-to-send-the-start-command-to-the-ilo/m-p/4246495#M62155</guid>
      <dc:creator>Paede</dc:creator>
      <dc:date>2008-08-08T10:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: script to send the start command to the ILO</title>
      <link>https://community.hpe.com/t5/server-management-systems/script-to-send-the-start-command-to-the-ilo/m-p/5827637#M62156</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to use HPSIM to power-on a list of servers but an error occurs :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="book antiqua,palatino"&gt;"This tool cannot run on ******-****** as it does not pass the conditions required for running it.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="book antiqua,palatino"&gt;WSMAN must be greater than or equal to 1.0"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is WSMAN? Where I can download it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Oct 2012 09:03:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/server-management-systems/script-to-send-the-start-command-to-the-ilo/m-p/5827637#M62156</guid>
      <dc:creator>Keumi</dc:creator>
      <dc:date>2012-10-09T09:03:10Z</dc:date>
    </item>
  </channel>
</rss>

