TIME_CREATED - property in ROOT\snmp\SMIR namespace

TIME_CREATED in other namespaces

List of classes with TIME_CREATED local property in ROOT\snmp\SMIR namespace

propertyClassOrigin
TIME_CREATED__ACE__ACE
TIME_CREATED__Event__Event
TIME_CREATED__SecurityDescriptor__SecurityDescriptor
TIME_CREATED__Trustee__Trustee

List of classes with TIME_CREATED derived property in ROOT\snmp\SMIR namespace

propertyClassOrigin
TIME_CREATED__ClassCreationEvent__Event
TIME_CREATED__ClassDeletionEvent__Event
TIME_CREATED__ClassModificationEvent__Event
TIME_CREATED__ClassOperationEvent__Event
TIME_CREATED__ConsumerFailureEvent__Event
TIME_CREATED__EventDroppedEvent__Event
TIME_CREATED__EventQueueOverflowEvent__Event
TIME_CREATED__ExtrinsicEvent__Event
TIME_CREATED__InstanceCreationEvent__Event
TIME_CREATED__InstanceDeletionEvent__Event
TIME_CREATED__InstanceModificationEvent__Event
TIME_CREATED__InstanceOperationEvent__Event
TIME_CREATED__MethodInvocationEvent__Event
TIME_CREATED__NamespaceCreationEvent__Event
TIME_CREATED__NamespaceDeletionEvent__Event
TIME_CREATED__NamespaceModificationEvent__Event
TIME_CREATED__NamespaceOperationEvent__Event
TIME_CREATED__QOSFailureEvent__Event
TIME_CREATED__SystemEvent__Event
TIME_CREATED__TimerEvent__Event
TIME_CREATEDSnmpAuthenticationFailureExtendedNotification__Event
TIME_CREATEDSnmpAuthenticationFailureNotification__Event
TIME_CREATEDSnmpColdStartExtendedNotification__Event
TIME_CREATEDSnmpColdStartNotification__Event
TIME_CREATEDSnmpEGPNeighborLossExtendedNotification__Event
TIME_CREATEDSnmpEGPNeighborLossNotification__Event
TIME_CREATEDSnmpExtendedNotification__Event
TIME_CREATEDSnmpLinkDownExtendedNotification__Event
TIME_CREATEDSnmpLinkDownNotification__Event
TIME_CREATEDSnmpLinkUpExtendedNotification__Event
TIME_CREATEDSnmpLinkUpNotification__Event
TIME_CREATEDSnmpNotification__Event
TIME_CREATEDSnmpV1ExtendedNotification__Event
TIME_CREATEDSnmpV1Notification__Event
TIME_CREATEDSnmpV2ExtendedNotification__Event
TIME_CREATEDSnmpV2Notification__Event
TIME_CREATEDSnmpWarmStartExtendedNotification__Event
TIME_CREATEDSnmpWarmStartNotification__Event

Code samples for TIME_CREATED property

The class SnmpLinkUpExtendedNotification is abstract and serves only as a base for new classes.

Get a Class as object

Short VB Script code to get the abstract class SnmpLinkUpExtendedNotification.
See in another language: C#, VB.Net.
'https://wutils.com/wmi/
Dim wmiClass, oProperty
Set wmiClass = GetObject( _
 "WINMGMTS:\\.\ROOT\snmp\SMIR:" + _
 "SnmpLinkUpExtendedNotification")

'get some class property 
Wscript.Echo wmiClass.properties_("TIME_CREATED").Origin 'or other property name, see properties

'Check if the class is singleton
Wscript.Echo wmiClass.Path_.IsSingleton

'Get number of methods in the class
Wscript.Echo wmiClass.Methods_.Count

'List class properties
For Each oProperty In wmiClass.properties_
	'get property name and origin. Property value in the class is null, of course.
	Wscript.Echo oProperty.Name, oProperty.Origin, oProperty.Value
Next 

InstancesOf

List of all instances, wmi class SnmpLinkUpExtendedNotification.
'https://wutils.com/wmi/
Dim oWMI, Instances, Instance

'Get base WMI object, "." means computer name (local)
Set oWMI = GetObject("WINMGMTS:\\.\ROOT\snmp\SMIR")

'Get instances of SnmpLinkUpExtendedNotification - all instances of this class and derived classes 
Set Instances = oWMI.InstancesOf("SnmpLinkUpExtendedNotification")


'Enumerate instances  
For Each Instance In Instances 
  'Do something with the instance
  Wscript.Echo Instance.TIME_CREATED 'or other property name
Next 'Instance
comments powered by Disqus
WUtils.com