ProLiant Servers (ML,DL,SL)
1821541 Members
2144 Online
109633 Solutions
New Discussion юеВ

Serial Number Detection

 
Paul Whaling
New Member

Serial Number Detection

Does anyone know where I could get a DOS utility that will tell me the serial number of a ProLiant Server?
Thanks
3 REPLIES 3
Sunil Jerath
Honored Contributor

Re: Serial Number Detection

Hello Paul,
Please try the following link for Serial No Auto Detection:

<>

Regards,
Marc Eastburn
Advisor

Re: Serial Number Detection

I know you asked for DOS, but just in case ... this might work (Windows 2000 or NT4 with WMI installed)

try this VB Script

On Error Resume Next
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_BIOS",,48)
For Each objItem in colItems

Wscript.Echo "Manufacturer: " & objItem.Manufacturer
Wscript.Echo "SerialNumber: " & objItem.SerialNumber
Next
Marc Eastburn
Advisor

Re: Serial Number Detection

the posting befoer wrapepd the text so that if you cut and pastethis it will not work.

I have attached this file so that you can see the text formatting as it should be, you can just change the file extention to vbs. You can also run this from a command prompt by typing in cscript.exe