- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Microsoft
- >
- Need to get serialnumber for 200 PCs using IP-Addr
Operating System - Microsoft
1820396
Members
3086
Online
109623
Solutions
Forums
Categories
Company
Local Language
юдл
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
юдл
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-05-2010 10:08 PM
тАО01-05-2010 10:08 PM
Hello,
1) is it possible to get serialnumber for 200 Servers remotely from my PC using IP-ADDR
(I dont want to login to each one and run
wmic bios get serialnumber
or run wscript
2) How do I get serialnumbers for 4 blade enclosures (each has 16 blades). I need serial number for each blade.
1) is it possible to get serialnumber for 200 Servers remotely from my PC using IP-ADDR
(I dont want to login to each one and run
wmic bios get serialnumber
or run wscript
2) How do I get serialnumbers for 4 blade enclosures (each has 16 blades). I need serial number for each blade.
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-07-2010 09:03 AM
тАО01-07-2010 09:03 AM
Solution
Hi Basheer,
You don't need to login to every computer.
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:
for /f %%a in (serverlist.txt) do (
echo %%a >> outputfile.txt
wmic /node:%%a bios get serialnumber >> outputfile.txt
)
Hope it's what you're looking for.
Regards.
You don't need to login to every computer.
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:
for /f %%a in (serverlist.txt) do (
echo %%a >> outputfile.txt
wmic /node:%%a bios get serialnumber >> outputfile.txt
)
Hope it's what you're looking for.
Regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-08-2010 08:47 PM
тАО01-08-2010 08:47 PM
Re: Need to get serialnumber for 200 PCs using IP-Addr
Thanks a lot Edgar.
I added /USER and /PASSWORD arguments for each machine.
Since we have 3 different domains.
I am part of the all 3 domains. I dont have Administraor password. BUt my usrname has the admin preivlieges.
what is the syntax for specifying the domain and user
I added /USER and /PASSWORD arguments for each machine.
Since we have 3 different domains.
I am part of the all 3 domains. I dont have Administraor password. BUt my usrname has the admin preivlieges.
what is the syntax for specifying the domain and user
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-11-2010 12:48 AM
тАО01-11-2010 12:48 AM
Re: Need to get serialnumber for 200 PCs using IP-Addr
Hi Basheer,
You'll have to use different files (list of servers) for each domain.
I'll do it this way:
start - run - cmd
runas /u:DOMAIN1\user1 findSN.cmd
runas /u:DOMAIN2\user2 findSN.cmd
and so forth.
The findSN.cmd file should include the wmic along with the node, bios, get and serialnumber switches within the FOR loop.
Hope it helps.
Edgar.
You'll have to use different files (list of servers) for each domain.
I'll do it this way:
start - run - cmd
runas /u:DOMAIN1\user1 findSN.cmd
runas /u:DOMAIN2\user2 findSN.cmd
and so forth.
The findSN.cmd file should include the wmic along with the node, bios, get and serialnumber switches within the FOR loop.
Hope it helps.
Edgar.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Learn About
News and Events
Support
© Copyright 2025 Hewlett Packard Enterprise Development LP