Notifications to a text file

I’d like to have Dude notify errors/warnings to a text file.
How do I setup a custom notification to do this?

If Dude could do this, I have an SMS program that will retrieve these texts, parse the info and dial out the message to my cell-phone provider.

HELP?!

-Jason

Dude can be configured to send SMS directly. Setup e-mail notification and ask your operator for the way to receive SMS from e-mail.

I appreciate the response… but if my SMTP server goes down, then I have no way to get SMS messages.

There is an applicationo that will send SMS directly via USB/Serial modem. However, it needs too monitor a folder for text messages. If a message appears, the application will parse the message, format it, dial the TAP number via the modem and I’ll be alerted of the problem within minutes.

So, what I need Dude to do, or someone to assist me… how do I make a notification that will create a text file with the parameters and save it to a folder outside of the dude installation directory?

-Jason

Hi, boom132
You can do it using cmd file

  1. create it:
    just put 1 line
    echo %1 >> c:\myfile.txt
    in
    C:\dudescript\echo.cmd

  2. paste XML in your notifications

<?xml version="1.0" ?> **** 24 2443445 Echo to file 7 C:\\dudescript\\echo.cmd "Service [Probe.Name] on [Device.Name] is now [Service.Status] ([Service.ProblemDescription])"

That’s all :slight_smile: