'************************************************************************************************** ' MOM Script ' ' Name: Set Escalation Delay ' ' Function: Sets escalation delay and category on current alert. ' ' Parameters: EscalationCategory - Category of the escalation alert created from current alert. ' EscalationDelay - Number of minutes alert can be in New state before being escalated. ' ' Notes: Script must be used pn a management server in response to an event from the following WMI query. ' '************************************************************************************************** Set objAlert = ScriptContext.Alert objAlert.SetCustomField 1,ScriptContext.Parameters.Get("EscalationCategory") objAlert.SetCustomField 2,ScriptContext.Parameters.Get("EscalationDelay")