<?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: GUID/UUID on Proliant Servers in ProLiant Servers (ML,DL,SL)</title>
    <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/guid-uuid-on-proliant-servers/m-p/4085864#M70713</link>
    <description>I have never heard of this BIOS setting before.  I always thought that the GUID/UUID info was semi-random.  Did you find some documentation that ties this directly back to the hardware?&lt;BR /&gt;&lt;BR /&gt;I am fairly certain that HP supports AD given that MS uses HP systems (among others) to develop on.&lt;BR /&gt;&lt;BR /&gt;adam</description>
    <pubDate>Tue, 16 Oct 2007 09:46:29 GMT</pubDate>
    <dc:creator>Adam Baum</dc:creator>
    <dc:date>2007-10-16T09:46:29Z</dc:date>
    <item>
      <title>GUID/UUID on Proliant Servers</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/guid-uuid-on-proliant-servers/m-p/4085863#M70712</link>
      <description>Active Directory supports managed Computers by 32-Character GUID/UUID.&lt;BR /&gt;&lt;BR /&gt;In the Bios Settings of the DL 380 G4 i just find a 16-Character-String.&lt;BR /&gt;&lt;BR /&gt;Can someone please help me to find the required 32-Character-String or does HP not support the Microsoft AD?</description>
      <pubDate>Mon, 15 Oct 2007 03:33:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/guid-uuid-on-proliant-servers/m-p/4085863#M70712</guid>
      <dc:creator>M. Hofstetter</dc:creator>
      <dc:date>2007-10-15T03:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: GUID/UUID on Proliant Servers</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/guid-uuid-on-proliant-servers/m-p/4085864#M70713</link>
      <description>I have never heard of this BIOS setting before.  I always thought that the GUID/UUID info was semi-random.  Did you find some documentation that ties this directly back to the hardware?&lt;BR /&gt;&lt;BR /&gt;I am fairly certain that HP supports AD given that MS uses HP systems (among others) to develop on.&lt;BR /&gt;&lt;BR /&gt;adam</description>
      <pubDate>Tue, 16 Oct 2007 09:46:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/guid-uuid-on-proliant-servers/m-p/4085864#M70713</guid>
      <dc:creator>Adam Baum</dc:creator>
      <dc:date>2007-10-16T09:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: GUID/UUID on Proliant Servers</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/guid-uuid-on-proliant-servers/m-p/4085865#M70714</link>
      <description>&lt;!--!*#--&gt;You can get this information via WMI.  Below is a script which can automate this for you.&lt;BR /&gt;&lt;BR /&gt;On Error Resume Next&lt;BR /&gt;dim fsObj&lt;BR /&gt;dim sServerList&lt;BR /&gt;dim sServer&lt;BR /&gt;dim strComputer&lt;BR /&gt;Const ForReading = 1&lt;BR /&gt;&lt;BR /&gt;' EDIT THE SECOND LINE BELOW FOR THE SERVER LIST FILE YOU WISH TO USE&lt;BR /&gt;' FILE SHOULD CONTAIN ONE SERVER NAME PER LINE&lt;BR /&gt;Set fsObj = CreateObject("Scripting.FileSystemObject")&lt;BR /&gt;Set sServerList = fsObj.OpenTextFile("c:\server_list_file.txt", ForReading)&lt;BR /&gt;&lt;BR /&gt;strComputers = sServerList.ReadAll&lt;BR /&gt;sServerList.Close&lt;BR /&gt;&lt;BR /&gt;arrComputers = Split(strComputers, vbCrLf)&lt;BR /&gt;Set objShell = CreateObject("WScript.Shell")&lt;BR /&gt;&lt;BR /&gt;Wscript.Echo "ServerName" &amp;amp; vbTab &amp;amp; "IdentifyingNumber" &amp;amp; vbTab &amp;amp; "Name" &amp;amp; vbTab &amp;amp; "UUID" &amp;amp; vbTab &amp;amp; "Vendor" &amp;amp; vbTab &amp;amp; "Version"&lt;BR /&gt;&lt;BR /&gt;For Each strComputer In arrComputers&lt;BR /&gt;&lt;BR /&gt;    strCommand = "%comspec% /c ping -n 3 -w 1000 " &amp;amp; strComputer&lt;BR /&gt;    Set objExecObject = objShell.Exec(strCommand)&lt;BR /&gt;    strText = objExecObject.StdOut.ReadAll&lt;BR /&gt;    If Instr(strText, "TTL") &amp;gt; 0 Then&lt;BR /&gt;&lt;BR /&gt;         Set objWMIService = GetObject("winmgmts:" &amp;amp; "{impersonationLevel=impersonate}!\\" &amp;amp; strComputer &amp;amp; "\root\cimv2")&lt;BR /&gt;         Set colSettings = objWMIService.ExecQuery ("Select * from Win32_ComputerSystemProduct")&lt;BR /&gt;         For Each objComputer in colSettings&lt;BR /&gt;         Wscript.Echo strComputer &amp;amp; vbTab &amp;amp; objComputer.IdentifyingNumber &amp;amp; vbTab &amp;amp; objComputer.Name &amp;amp; vbTab &amp;amp; objComputer.UUID &amp;amp; vbTab &amp;amp; objComputer.Vendor &amp;amp; vbTab &amp;amp; objComputer.Version&lt;BR /&gt;         Next&lt;BR /&gt;&lt;BR /&gt;    Else&lt;BR /&gt;        Wscript.Echo strComputer &amp;amp; vbTab &amp;amp; "could not be reached."&lt;BR /&gt;    End If&lt;BR /&gt;&lt;BR /&gt;Next&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Oct 2007 09:09:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/guid-uuid-on-proliant-servers/m-p/4085865#M70714</guid>
      <dc:creator>pedro-chicago</dc:creator>
      <dc:date>2007-10-18T09:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: GUID/UUID on Proliant Servers</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/guid-uuid-on-proliant-servers/m-p/4085866#M70715</link>
      <description>I found it:&lt;BR /&gt;&lt;BR /&gt;When the Computer starts the UUID will shown on the NIC-Information-Screen.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 25 Oct 2007 02:11:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/guid-uuid-on-proliant-servers/m-p/4085866#M70715</guid>
      <dc:creator>M. Hofstetter</dc:creator>
      <dc:date>2007-10-25T02:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: GUID/UUID on Proliant Servers</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/guid-uuid-on-proliant-servers/m-p/4085867#M70716</link>
      <description>Hello M! I found how to get guid.&lt;BR /&gt;&lt;BR /&gt;1. Logon to iLO with ssh.&lt;BR /&gt;2. Type VSP command&lt;BR /&gt;3. type id.</description>
      <pubDate>Thu, 24 Jul 2008 05:08:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/guid-uuid-on-proliant-servers/m-p/4085867#M70716</guid>
      <dc:creator>Valery Tyurin</dc:creator>
      <dc:date>2008-07-24T05:08:52Z</dc:date>
    </item>
  </channel>
</rss>

