Basically, i have made a vb script that when running will send a SMS to my cellphone with a given message trought a 3rd party software (SMS Control Center), now i created a new notification and set it to run a program (my script). When i just simply want to test it and press the test button, nothing happends. When i run the script myself everything works perfectly, but as soon as i try to run it from PRTG it does nothing. The script itself doesn't have to start up any new programs. the 3rd party software is already running.
This is the script im running:
Dim oApp Set oApp = createobject("SmsCenter.Application") oApp.SendSMS "+3241414285458", "test", false Set oApp = Nothing I have also noticed when i try to test a notification with a simple batch file, nothing happends aswell. @echo off pause
So it just feels like PRTG doesnt want to run any scripts, altough when i check the logs it says
Status sending EXE:Ok
I hope anyone can help me with this, cause i'm using this for my senior year project in school and been stuck on this for a while now.
Add comment