Xerox Serial Number

What is activation code for xerox workcenter 5790 serial number is. Hi munib, Thank you for reading the At Your Service blog. It may be asking for an activation code for an added feature. Re: Workcentre 6505 serial number. Thank you for using the Support Forum. Please consider calling your technician to get him/her to remedy the problem. Or you could contact your support centre for further assistance. Be sure to click Kudos for those who have helped you. Select Accept as Solution for posts that have helped to solve your issue (s)!

I want to retrieve serial numbers from multiple devices using SNMP. I'm just using the net-snmp.org snmpget/snmpwalk tools
I am finding that the SNMP OID for serial numbers is different on different hardware, even with cisco, for example:
Cisco Aironet 1.3.6.1.4.1.9.9.92.1.1.1.2.1
Cisco 2950 1.3.6.1.4.1.9.3.6.3
Xerox printer 1.3.6.1.2.1.43.5.1.1.17.1
I dont really understand MIBS, but is there any way of constructing a MIB file or getting existing MIB files to extract serial numbers that would cover all SNMP products? Any comments and discussion which helps me understand how snmp works in this regard would also be appreciated
thanks
I'm looking for a VBScript or any other utility available to get the serial number of Lexmark printers.
I already have this little script that gives me other details of a specific printer
Xerox Dim objWMIService, objItem, colItems, strComputer
strComputer ='??????'
strprinter = InputBox('Enter Printer Name')
If strprinter = ' Then
wscript.quit
End If
Printer = '%' & ucase(strprinter) & '%'
Set objWMIService = GetObject('winmgmts:' & strComputer & 'rootCIMV2')
Set colItems = objWMIService.ExecQuery('SELECT * FROM Win32_Printer where Name like ' & printer & ' and Local=TRUE',,48)
For Each objItem In colItems
WScript.Echo objItem.name & VbCr & _
' & VbCr & _
'Availability: ' & objItem.Availability & VbCr & _
'Description: ' & objItem.Description & VbCr & _
'Printer: ' & objItem.DeviceID & VbCr & _
'Driver Name: ' & objItem.DriverName & VbCr & _
'Port Name: ' & objItem.PortName & VbCr & _

Serial Number Lookup


'Printer State: ' & objItem.PrinterState & VbCr & _
'Printer Status: ' & objItem.PrinterStatus & VbCr & _
'PrintJobDataType: ' & objItem.PrintJobDataType & VbCr & _
'Print Processor: ' & objItem.PrintProcessor & VbCr & _
'Spool Enabled: ' & objItem.SpoolEnabled & VbCr & _
'Separator File: ' & objItem.SeparatorFile & VbCr & _
'Queued: ' & objItem.Queued & VbCr & _
'Status: ' & objItem.Status & VbCr & _
'StatusInfo: ' & objItem.StatusInfo & VbCr & _
'Published: ' & objItem.Published & VbCr & _
'Shared: ' & objItem.Shared & VbCr & _
'ShareName: ' & objItem.ShareName & VbCr & _
'Direct: ' & objItem.Direct & VbCr & _
'Location: ' & objItem.Location & VbCr & _
'Priority: ' & objItem.Priority & VbCr & _

Xerox Serial Number List

'Work Offline: ' & objItem.WorkOffline & VbCr & _
'Horizontal Res: ' & objItem.HorizontalResolution & VbCr & _

Xerox Serial Number Breakdown

'Vertical Res: ' & objItem.VerticalResolution & VbCr & _
'
Next

Xerox Printer Serial Number Lookup


Xerox Serial Number

WScript.Quit