I have the following script to access a URL from vb script.
This is used to flag a program to start some process.
It works perfect when everything is ok. If there is some problem with the network and when it cannot access the remote machine this script fails.
Is there anyway to send/make a notification to a user when this script fails.
url = "Set xml = CreateObject("Microsoft.XMLHTTP")
xml.Open "GET", url, false
call xml.Send()
Thanks in advance
This is used to flag a program to start some process.
It works perfect when everything is ok. If there is some problem with the network and when it cannot access the remote machine this script fails.
Is there anyway to send/make a notification to a user when this script fails.
url = "Set xml = CreateObject("Microsoft.XMLHTTP")
xml.Open "GET", url, false
call xml.Send()
Thanks in advance