Microsoft Operations Manager |
The SendMessagemethod submits an alphanumeric pager message for processing by the modem paging software.
[VBScript]
PagerJobQueue.SendMessage(strService String, strOperatorID String,
strMessage String, [lngPriority Variant])
Boolean
The following example shows how to send a page set to priority 50 with the text Hello World to pager 5551212 on the Contoso, Ltd. service.
[VBScript]
Dim objPagerJobQueue, blnOK
Set objPagerJobQueue = CreateObject("OPScrUtil.PagerJobQueue")
blnOK = objPagerJobQueue.SendMessage("Contoso, Ltd.", "5551212",
"Hello world", 50)
Set objPagerJobQueue = Nothing
Windows NT/2000: Requires Windows 2000 or later
Version: Requires MOM 1.0 SP1
Did you find this information useful? Please send your suggestions and comments about the documentation to momsdk@microsoft.com.