Event.LoggingDomain Property

Gets the logging domain of the event.

 Event.LoggingDomain

Access

Read/Write

Return Value

String

Remarks

The LoggingDomain property is read-only when used with an event provided to the script by MOM. The property is read/write when used with a new event created with the ScriptContext.CreateEvent method.

When setting this property, use only NetBIOS names. Using other naming conventions can create duplicate entries in MOM for the same computer.

Examples

The following example shows how to create a new event and set the LoggingDomain property to DOMAIN1.

Const EVENT_TYPE_SUCCESS = 0
Const EVENT_TYPE_ERROR   = 1
Const EVENT_TYPE_WARNING = 2
Const EVENT_TYPE_INFORMATION = 4
Const EVENT_TYPE_AUDITSUCCESS = 8
Const EVENT_TYPE_AUDITFAILURE = 16

Function MakeEvent()
    Dim objEvent

    Set objEvent = ScriptContext.CreateEvent()

    objEvent.EventSource = "TestScript"
    objEvent.EventNumber = 1349
    objEvent.EventType = EVENT_TYPE_WARNING
    objEvent.LoggingDomain = "DOMAIN1"
    objEvent.SourceDomain = "DOMAIN1"

    Set MakeEvent = objEvent
End Function

Requirements

Platforms: Requires Windows 2000 or later

Version: Requires MOM 2000  or later

See Also

Event Object