Provides access to the name of the computer that logged the event.
ScriptContext.Event.LoggingComputer ScriptContext.CreateEvent.LoggingComputer
Read Only | When used with an event provided to the script by the Microsoft Operations Manager 2000 (MOM) product. |
Read/Write | When used with a new event created with the ScriptContext.CreateEvent Method. |
String.
To create a new event and set the LoggingComputer property, enter:
Dim MYevent1 Dim MYevent2 set MYevent1 = ScriptContext.CreateEvent set MYevent2 = ScriptContext.Event MYevent1.LoggingComputer = MYevent2.LoggingComputer
This example sets the LoggingComputer property based on the event that caused the MOM product to invoke the script. The LoggingComputer property is set to the name of the computer that logged the event.