We have PBX controlled via http. When I send
http://10.20.30.11:8888/switch?name=lukas&destination=84022&source=84021
in address line Firefox, command is working correctly (tel. line is conected from line 84021 to line lukas 84022. I try send the command via vbs:
Set http = CreateObject("Microsoft.XmlHttp")
On Error Resume Next
URL = "http://10.20.30.11:8888/switch?name=lukas&destination=84022&source=84021"
http.open "GET", URL, False
http.send
Set http = Nothing
Bat this script isn't working. Could you help me, please? Thank for your answer.