' Prints OIDS and Names of all objects stores in repository ' Usage : cscript poidtable.vbs On Error Resume Next Set RepMgr = CreateObject("UnbrowseSNMP.RepositoryManager") Set RepDB = RepMgr.LoadRepositoryReadOnly ' obj.Name and obj.OID are properties of ObjectInfo class, see ' http://www.unleashnetworks.com/devzone/unbrowse/scripting/102.html#objectinfo For Each obj In RepDB.OIDIndexTable.Entries WScript.stdout.writeline obj.Name & obj.OID Next