Group operations with users in the new version of the program “10-Strike Network Monitoring Pro” 8.3
The March version 8.3 of 10-Strike Network Monitor, a network equipment and server monitoring program, adds support for user groups, and improves the S.M.A.R.T. hard drive and SSD disk health monitoring. This article also discusses how to use alternative messaging apps.
How else can you send messages besides Slack and Telegram?
This can be done in two ways:
1. Via a VBScript / JScript script.
If your messenger service supports the HTTP API, you can access it with a script like this (sending to Slack):
function Main
Dim request
Set request = CreateObject("MSXML2.XMLHTTP")
request.open "POST", "https://hooks.slack.com/services/AJHGK45J4/FTS5NFG73/UDz30ftMMzinOgFxhTx2zBBB", false
request.send "{""text"": ""It is a test! ""}"
Main = ""
end function
Or this one (on Telegram):
function Main
Dim request
Set request = CreateObject("MSXML2.XMLHTTP")
request.open "POST", "https://api.telegram.org/bot454654680:ADFgdfghdf5p5tAQrdZ6Ilf_G7e_3dy0qhOCi1E/sendMessage?chat_id=344565393&text=test_message", false
request.send
Main = ""
end function
2. Using the curl utility
The second method is the same, but using the open-source curl utility. More










