cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
371
Views
4
Helpful
2
Replies

Double checking the Unity server serial numbers?

victoriabardy
Level 4
Level 4

Hello all,

Can someone help me out with how to double check/verify the serial numbers on our unity servers?

Please let me know.

Thank you!

Rgds,

Vicky

2 Replies 2

Adam Thompson
Level 4
Level 4

I can't take credit for this at all, but this should work for you.

Try this: copy the following in Notepad and save it in server's desktop as .vbs file.

strComputer = "."

Set objWMIService = GetObject("winmgmts:" _

& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")

Set colBIOS = objWMIService.ExecQuery _

("Select * from Win32_BIOS")

For each objBIOS in colBIOS

Wscript.Echo "Manufacturer: " & objBIOS.Manufacturer

Wscript.Echo "Serial Number: " & objBIOS.SerialNumber

Next

Once finished, double click and should show you the Serial number.

See Adrián's post here: http://forum.cisco.com/eforum/servlet/NetProf?page=netprof&forum=Unified%20Communications%20and%20Video&topic=IP%20Telephony&topicID=.ee6c829&fromOutline=&CommCmd=MB%3Fcmd%3Ddisplay_location%26location%3D.2cd3187b

Thanks,

Adam

Please rate if helpful

This worked great!

Thank you and Adrian so much for this post!

Rgds,

Vicky