<?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: Windows Management Instrumentation (WMI) in Windows Server 2003</title>
    <link>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440808#M5622</link>
    <description>Even if I change, even change the WMI query it does not save the edit and still not get the information from the serial motherboard, I think I will give this information in the inventory. &lt;BR /&gt;&lt;BR /&gt;Edgar if you have any solution I am very grateful. &lt;BR /&gt;&lt;BR /&gt;Thank you very much</description>
    <pubDate>Wed, 17 Jun 2009 15:16:31 GMT</pubDate>
    <dc:creator>Jackson Rocha</dc:creator>
    <dc:date>2009-06-17T15:16:31Z</dc:date>
    <item>
      <title>Windows Management Instrumentation (WMI)</title>
      <link>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440802#M5616</link>
      <description>I wonder if HP will provide through the Windows Management Instrumentation WMI, which is possible to read information from hardware and software of the machine, the information in the motherboard, I have the model ML570, ML110, ML370 and DL180 and none this shows that information.</description>
      <pubDate>Tue, 16 Jun 2009 17:01:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440802#M5616</guid>
      <dc:creator>Jackson Rocha</dc:creator>
      <dc:date>2009-06-16T17:01:49Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Management Instrumentation (WMI)</title>
      <link>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440803#M5617</link>
      <description>Hi Jackson,&lt;BR /&gt;&lt;BR /&gt;Try running this:&lt;BR /&gt;&lt;BR /&gt;On Error Resume Next&lt;BR /&gt;strComputer = "."&lt;BR /&gt;Set objWMIService = GetObject("winmgmts:\\" &amp;amp; strComputer &amp;amp; "\root\cimv2")&lt;BR /&gt;Set colItems = objWMIService.ExecQuery("Select * from Win32_ComputerSystemProduct",,48)&lt;BR /&gt;For Each objItem in colItems&lt;BR /&gt;    Wscript.Echo "Vendor: " &amp;amp; objItem.Vendor&lt;BR /&gt;    Wscript.Echo "Version: " &amp;amp; objItem.Version&lt;BR /&gt;Next&lt;BR /&gt;&lt;BR /&gt;Hope it helps.&lt;BR /&gt;&lt;BR /&gt;Edgar.</description>
      <pubDate>Wed, 17 Jun 2009 10:56:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440803#M5617</guid>
      <dc:creator>Edgar Zapata</dc:creator>
      <dc:date>2009-06-17T10:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Management Instrumentation (WMI)</title>
      <link>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440804#M5618</link>
      <description>Hi Edgar! &lt;BR /&gt;&lt;BR /&gt;Ran the class "Select * from Win32_ComputerSystemProduct" but only returns the serial of equipment (BIOS), not the data of the motherboard. &lt;BR /&gt;How do I run the query you sent? &lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Wed, 17 Jun 2009 13:42:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440804#M5618</guid>
      <dc:creator>Jackson Rocha</dc:creator>
      <dc:date>2009-06-17T13:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Management Instrumentation (WMI)</title>
      <link>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440805#M5619</link>
      <description>Hi Jackson,&lt;BR /&gt;&lt;BR /&gt;Save this within a file:&lt;BR /&gt;&lt;BR /&gt;On Error Resume Next&lt;BR /&gt;strComputer = "."&lt;BR /&gt;Set objWMIService = GetObject("winmgmts:\\" &amp;amp; strComputer &amp;amp; "\root\cimv2")&lt;BR /&gt;Set colItems = objWMIService.ExecQuery("Select * from Win32_ComputerSystemProduct",,48)&lt;BR /&gt;For Each objItem in colItems&lt;BR /&gt;Wscript.Echo "Vendor: " &amp;amp; objItem.Vendor&lt;BR /&gt;Wscript.Echo "Version: " &amp;amp; objItem.Version&lt;BR /&gt;Next&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Name the file VendorNVer.vbs or whatever.&lt;BR /&gt;The file should be .vbs file though.&lt;BR /&gt;&lt;BR /&gt;Then, you Start - run - cmd     and then press enter.&lt;BR /&gt;Type the following&lt;BR /&gt;cscript VendorNVer.vbs     and then press enter.&lt;BR /&gt;&lt;BR /&gt;Hope it helps.&lt;BR /&gt;&lt;BR /&gt;Edgar.&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Jun 2009 14:24:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440805#M5619</guid>
      <dc:creator>Edgar Zapata</dc:creator>
      <dc:date>2009-06-17T14:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Management Instrumentation (WMI)</title>
      <link>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440806#M5620</link>
      <description>Hi Edgard, &lt;BR /&gt;&lt;BR /&gt;Run the query, get the manufacturer's name and version of the equipment I need is the serial of the motherboard, and whether HP will provide such detail for software inventory.&lt;BR /&gt;Thank you,</description>
      <pubDate>Wed, 17 Jun 2009 14:49:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440806#M5620</guid>
      <dc:creator>Jackson Rocha</dc:creator>
      <dc:date>2009-06-17T14:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Management Instrumentation (WMI)</title>
      <link>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440807#M5621</link>
      <description>Use iLo or Systems Management Homepage.&lt;BR /&gt;Both tools can tell you the S/N of the motherboard.&lt;BR /&gt;&lt;BR /&gt;Just be aware that whenever you change the iLO card or the motherboard itself.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Jun 2009 15:05:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440807#M5621</guid>
      <dc:creator>Edgar Zapata</dc:creator>
      <dc:date>2009-06-17T15:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Management Instrumentation (WMI)</title>
      <link>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440808#M5622</link>
      <description>Even if I change, even change the WMI query it does not save the edit and still not get the information from the serial motherboard, I think I will give this information in the inventory. &lt;BR /&gt;&lt;BR /&gt;Edgar if you have any solution I am very grateful. &lt;BR /&gt;&lt;BR /&gt;Thank you very much</description>
      <pubDate>Wed, 17 Jun 2009 15:16:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440808#M5622</guid>
      <dc:creator>Jackson Rocha</dc:creator>
      <dc:date>2009-06-17T15:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Management Instrumentation (WMI)</title>
      <link>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440809#M5623</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Finally got it, check this out.&lt;BR /&gt;&lt;BR /&gt;On Error Resume Next&lt;BR /&gt;strComputer = "."&lt;BR /&gt;Set objWMIService = GetObject("winmgmts:\\" &amp;amp; strComputer &amp;amp; "\root\cimv2")&lt;BR /&gt;Set colItems = objWMIService.ExecQuery("Select * from Win32_ComputerSystemProduct",,48)&lt;BR /&gt;For Each objItem in colItems&lt;BR /&gt;    Wscript.Echo "S/N: " &amp;amp; objItem.IdentifyingNumber&lt;BR /&gt;Next&lt;BR /&gt;&lt;BR /&gt;Plus, here's a 30-day trial period software  that can do the inventory job for you.&lt;BR /&gt;&lt;A href="http://www.softinventive.com/downloads/tni-setup.exe" target="_blank"&gt;http://www.softinventive.com/downloads/tni-setup.exe&lt;/A&gt;&lt;BR /&gt;I know this tool can be used to retrieve SN, Server maker and model among other data.&lt;BR /&gt;It's called Network Asset tracker.&lt;BR /&gt;&lt;BR /&gt;Hope it works.&lt;BR /&gt;&lt;BR /&gt;Edgar.</description>
      <pubDate>Thu, 18 Jun 2009 07:08:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440809#M5623</guid>
      <dc:creator>Edgar Zapata</dc:creator>
      <dc:date>2009-06-18T07:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Management Instrumentation (WMI)</title>
      <link>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440810#M5624</link>
      <description>I wasn't through yesterday.&lt;BR /&gt;Be aware that if you change the system board, iLO card or battery you need to make sure that the same SN remains the same in the NVRAM.&lt;BR /&gt;&lt;BR /&gt;I didn't know this myself, so here you'll find really valuable information I strongly recommend reading:&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1204890" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1204890&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope it helps.&lt;BR /&gt;Edgar.</description>
      <pubDate>Thu, 18 Jun 2009 07:31:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440810#M5624</guid>
      <dc:creator>Edgar Zapata</dc:creator>
      <dc:date>2009-06-18T07:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: Windows Management Instrumentation (WMI)</title>
      <link>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440811#M5625</link>
      <description>Edgar, good afternoon! &lt;BR /&gt;&lt;BR /&gt;Had this process of inventory, as HP does not provide the serial number of your motherboard for software inventory, only newer equipment, thank you for help, even once. &lt;BR /&gt;&lt;BR /&gt;Jackson</description>
      <pubDate>Thu, 18 Jun 2009 17:45:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/windows-server-2003/windows-management-instrumentation-wmi/m-p/4440811#M5625</guid>
      <dc:creator>Jackson Rocha</dc:creator>
      <dc:date>2009-06-18T17:45:09Z</dc:date>
    </item>
  </channel>
</rss>

