<?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 Re: How to clone BIOS settings using Get-HPEBIOSSetting? in BladeSystem - General</title>
    <link>https://community.hpe.com/t5/bladesystem-general/how-to-clone-bios-settings-using-get-hpebiossetting/m-p/7071718#M21876</link>
    <description>Hello, I,m trying to copy all the bios settings from one source to a target using the same method that is here, the commands complete but it doesn't update the configuration. Does it work to copy all the settings??</description>
    <pubDate>Wed, 04 Dec 2019 01:38:48 GMT</pubDate>
    <dc:creator>GabbeB</dc:creator>
    <dc:date>2019-12-04T01:38:48Z</dc:date>
    <item>
      <title>How to clone BIOS settings using Get-HPEBIOSSetting?</title>
      <link>https://community.hpe.com/t5/bladesystem-general/how-to-clone-bios-settings-using-get-hpebiossetting/m-p/7015009#M21276</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In the&amp;nbsp;Scripting Tools for Windows PowerShell User Guide BIOS Cmdlets v2.1 it says about&amp;nbsp;Get-HPEBIOSSetting:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;The cmdlet Get-HPEBIOSSetting returns all the BIOS configuration information for the target server. This information includes base configuration, current configuration, and pending configuration of the target server. &lt;EM&gt;&lt;STRONG&gt;You can also use this cmdlet to get the base configuration from one server and apply it to other servers.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;However, the doc is not clear how to do this. I cannot find any cmdlet called Set-&lt;SPAN&gt;HPEBIOSSetting or similar to simply apply all these settings. How can we clone BIOS settings from one server to another? Are we supposed to use multiple cmdlets to apply the values from&amp;nbsp;Get-HPEBIOSSetting?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you in advance for your help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Aug 2018 07:14:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/bladesystem-general/how-to-clone-bios-settings-using-get-hpebiossetting/m-p/7015009#M21276</guid>
      <dc:creator>Sasler</dc:creator>
      <dc:date>2018-08-15T07:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to clone BIOS settings using Get-HPEBIOSSetting?</title>
      <link>https://community.hpe.com/t5/bladesystem-general/how-to-clone-bios-settings-using-get-hpebiossetting/m-p/7015531#M21289</link>
      <description>&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;Here is my answer for your query.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Are we supposed to use multiple cmdlets to apply the values from&amp;nbsp;Get-HPEBIOSSetting?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Yes, you should use mutliple cmdlets to apply the values from one server to another server.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here is an example how to clone SystemLocalityInformationTable from one server to another server.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;EM&gt;1.&amp;nbsp;Establish a connection to base server&amp;nbsp;&lt;/EM&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PS C:\&amp;gt; $baseServer = Connect-HPEBIOS -IP&amp;nbsp;10.20.30.1 -Username abcuser -Password abc123 -DisableCertificateAuthentication&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;PS C:\&amp;gt; $baseServer | Get-HPEBIOSACPI_SLIT | fl&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;IP :&amp;nbsp;10.20.30.1&lt;BR /&gt;Hostname : abc1.domain.com&lt;BR /&gt;Status : OK&lt;BR /&gt;SystemLocalityInformationTable : Enabled&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;EM&gt;2. Execute Get-HPEBIOSSetting and store it in a variable&lt;/EM&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;PS C:\&amp;gt; $biosSettings = $baseServer | Get-HPEBIOSSetting&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;EM&gt;3.&amp;nbsp;Establish&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;a connection to&amp;nbsp;target servers (one or more)&lt;/EM&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;PS C:\&amp;gt; $targetServers = Connect-HPEBIOS -IP 10.20.30.2-3 -Username&amp;nbsp;abcuser -Password abc123 -DisableCertificateAuthentication&lt;/P&gt;&lt;P&gt;PS C:\&amp;gt; $&lt;SPAN&gt;targetServers&lt;/SPAN&gt;&amp;nbsp;| Get-HPEBIOSACPI_SLIT | fl&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;IP : 10.20.30.2&lt;BR /&gt;Hostname : abc2.domain.com&lt;BR /&gt;Status : OK&lt;BR /&gt;SystemLocalityInformationTable : Disabled&lt;/P&gt;&lt;P&gt;IP : 10.20.30.3&lt;BR /&gt;Hostname : &lt;SPAN&gt;abc3.domain&lt;/SPAN&gt;&lt;SPAN&gt;.com&lt;/SPAN&gt;&lt;BR /&gt;Status : OK&lt;BR /&gt;SystemLocalityInformationTable : Disabled&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;U&gt;4. Clone a &lt;SPAN&gt;SystemLocalityInformationTable&amp;nbsp;&lt;/SPAN&gt;settings from source to target servers.&lt;/U&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;PS C:\&amp;gt; $biosSettings.CurrentBIOSSettings | Set-HPEBIOSACPI_SLIT -Connection $targetServers&lt;/P&gt;&lt;P&gt;PS C:\&amp;gt; $&lt;SPAN&gt;targetServers&lt;/SPAN&gt;&amp;nbsp;| Get-HPEBIOSACPI_SLIT | fl&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;IP : 10.20.30.2&lt;BR /&gt;Hostname :&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;abc2.domain.com&lt;BR /&gt;Status : OK&lt;BR /&gt;SystemLocalityInformationTable :&lt;SPAN&gt;&amp;nbsp;En&lt;/SPAN&gt;abled&lt;/P&gt;&lt;P&gt;IP : 10.20.30.3&lt;BR /&gt;Hostname :&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;abc3.domain&lt;/SPAN&gt;&lt;SPAN&gt;.com&lt;/SPAN&gt;&lt;BR /&gt;Status : OK&lt;BR /&gt;SystemLocalityInformationTable :&lt;SPAN&gt;&amp;nbsp;En&lt;/SPAN&gt;abled&lt;/P&gt;&lt;P&gt;Please help me know if you need more informations.&lt;/P&gt;&lt;P&gt;Happy scripting&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2018 06:37:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/bladesystem-general/how-to-clone-bios-settings-using-get-hpebiossetting/m-p/7015531#M21289</guid>
      <dc:creator>B_Rajesh</dc:creator>
      <dc:date>2018-08-21T06:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to clone BIOS settings using Get-HPEBIOSSetting?</title>
      <link>https://community.hpe.com/t5/bladesystem-general/how-to-clone-bios-settings-using-get-hpebiossetting/m-p/7071718#M21876</link>
      <description>Hello, I,m trying to copy all the bios settings from one source to a target using the same method that is here, the commands complete but it doesn't update the configuration. Does it work to copy all the settings??</description>
      <pubDate>Wed, 04 Dec 2019 01:38:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/bladesystem-general/how-to-clone-bios-settings-using-get-hpebiossetting/m-p/7071718#M21876</guid>
      <dc:creator>GabbeB</dc:creator>
      <dc:date>2019-12-04T01:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to clone BIOS settings using Get-HPEBIOSSetting?</title>
      <link>https://community.hpe.com/t5/bladesystem-general/how-to-clone-bios-settings-using-get-hpebiossetting/m-p/7071882#M21880</link>
      <description>&lt;P&gt;The cmdlet Get-HPEBIOSSetting gets the entire configuration once but inorder to apply the configuration to the target, individual cmdlets needs to be executed as there is no single cmdlet that applies every setting at once. The specified example above copies &lt;STRONG&gt;ONLY&lt;/STRONG&gt; SystemLocalityInforamtionTable information from source to target.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2019 09:44:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/bladesystem-general/how-to-clone-bios-settings-using-get-hpebiossetting/m-p/7071882#M21880</guid>
      <dc:creator>Hema_H</dc:creator>
      <dc:date>2019-12-05T09:44:00Z</dc:date>
    </item>
  </channel>
</rss>

