<?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: Need to get serialnumber for 200 PCs using IP-Addr in Operating System - Microsoft</title>
    <link>https://community.hpe.com/t5/operating-system-microsoft/need-to-get-serialnumber-for-200-pcs-using-ip-addr/m-p/4559096#M9589</link>
    <description>Hi Basheer,&lt;BR /&gt;&lt;BR /&gt;You don't need to login to every computer.&lt;BR /&gt;Just get all of either IP addresses or hostnames for all servers in a let's say serverlist.txt file, then type the following in a .cmd file and run the .cmd file from your PC:&lt;BR /&gt;&lt;BR /&gt;for /f %%a in (serverlist.txt) do ( &lt;BR /&gt;echo %%a &amp;gt;&amp;gt; outputfile.txt&lt;BR /&gt;wmic /node:%%a bios get serialnumber &amp;gt;&amp;gt; outputfile.txt&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;Hope it's what you're looking for.&lt;BR /&gt;&lt;BR /&gt;Regards.</description>
    <pubDate>Thu, 07 Jan 2010 17:03:16 GMT</pubDate>
    <dc:creator>Edgar Zapata</dc:creator>
    <dc:date>2010-01-07T17:03:16Z</dc:date>
    <item>
      <title>Need to get serialnumber for 200 PCs using IP-Addr</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/need-to-get-serialnumber-for-200-pcs-using-ip-addr/m-p/4559095#M9588</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;1) is it possible to get serialnumber for 200 Servers remotely from my PC using IP-ADDR&lt;BR /&gt;&lt;BR /&gt;(I dont want to login to each one and run &lt;BR /&gt;wmic bios get serialnumber&lt;BR /&gt;or run wscript&lt;BR /&gt;&lt;BR /&gt;2) How do I get serialnumbers for 4 blade enclosures (each has 16 blades). I need serial number for each blade.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 06 Jan 2010 06:08:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/need-to-get-serialnumber-for-200-pcs-using-ip-addr/m-p/4559095#M9588</guid>
      <dc:creator>Basheer_2</dc:creator>
      <dc:date>2010-01-06T06:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: Need to get serialnumber for 200 PCs using IP-Addr</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/need-to-get-serialnumber-for-200-pcs-using-ip-addr/m-p/4559096#M9589</link>
      <description>Hi Basheer,&lt;BR /&gt;&lt;BR /&gt;You don't need to login to every computer.&lt;BR /&gt;Just get all of either IP addresses or hostnames for all servers in a let's say serverlist.txt file, then type the following in a .cmd file and run the .cmd file from your PC:&lt;BR /&gt;&lt;BR /&gt;for /f %%a in (serverlist.txt) do ( &lt;BR /&gt;echo %%a &amp;gt;&amp;gt; outputfile.txt&lt;BR /&gt;wmic /node:%%a bios get serialnumber &amp;gt;&amp;gt; outputfile.txt&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;Hope it's what you're looking for.&lt;BR /&gt;&lt;BR /&gt;Regards.</description>
      <pubDate>Thu, 07 Jan 2010 17:03:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/need-to-get-serialnumber-for-200-pcs-using-ip-addr/m-p/4559096#M9589</guid>
      <dc:creator>Edgar Zapata</dc:creator>
      <dc:date>2010-01-07T17:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: Need to get serialnumber for 200 PCs using IP-Addr</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/need-to-get-serialnumber-for-200-pcs-using-ip-addr/m-p/4559097#M9590</link>
      <description>Thanks a lot Edgar.&lt;BR /&gt;&lt;BR /&gt;I added /USER and /PASSWORD arguments for each machine.&lt;BR /&gt;&lt;BR /&gt;Since we have 3 different domains.&lt;BR /&gt;&lt;BR /&gt;I am part of the all 3 domains. I dont have Administraor password.  BUt my usrname has the admin preivlieges.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;what is the syntax for specifying the domain and user</description>
      <pubDate>Sat, 09 Jan 2010 04:47:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/need-to-get-serialnumber-for-200-pcs-using-ip-addr/m-p/4559097#M9590</guid>
      <dc:creator>Basheer_2</dc:creator>
      <dc:date>2010-01-09T04:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Need to get serialnumber for 200 PCs using IP-Addr</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/need-to-get-serialnumber-for-200-pcs-using-ip-addr/m-p/4559098#M9591</link>
      <description>Hi Basheer,&lt;BR /&gt;&lt;BR /&gt;You'll have to use different files (list of servers) for each domain.&lt;BR /&gt;I'll do it this way:&lt;BR /&gt;&lt;BR /&gt;start - run - cmd&lt;BR /&gt;runas /u:DOMAIN1\user1 findSN.cmd&lt;BR /&gt;runas /u:DOMAIN2\user2 findSN.cmd&lt;BR /&gt;and so forth.&lt;BR /&gt;The findSN.cmd file should include the wmic along with the node, bios, get and serialnumber switches within the FOR loop.&lt;BR /&gt;&lt;BR /&gt;Hope it helps.&lt;BR /&gt;Edgar.</description>
      <pubDate>Mon, 11 Jan 2010 08:48:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/need-to-get-serialnumber-for-200-pcs-using-ip-addr/m-p/4559098#M9591</guid>
      <dc:creator>Edgar Zapata</dc:creator>
      <dc:date>2010-01-11T08:48:44Z</dc:date>
    </item>
  </channel>
</rss>

