5 comments

  1. Ben Zipperer

    Nice script!
    I know it’s not elegant or self-contained, but you could have your script invoke blat to send the report. I usually do this to send reports from non-SBS windows servers. Blat can be found at http://www.blat.net/

  2. Tom Thompson

    This is not a AutoIt script but I use The Dude to accomplish the same thing. It is lightweight, free, runs as a service and is client/server based.

    http://www.mikrotik.com/thedude.php

  3. reboltutorial

    You can send email with Rebol and if you want to monitor your server it’s easier than with Autoit, it’s also free even for commercial use :)

    http://reboltutorial.com/blog/monitor-website/

    str-url: ask “url to monitor? ”
    url: to-url str-url
    str-email: ask “email to notify? ”
    email: to-email str-email

    forever [
    if error? try [
    read url
    ] [
    ;pre-requisite: you must setup your email see here
    send email "Site is down."
    ]
    wait 0:10
    ]

1 pingback

  1. [...] had played with checking if site is alive in my AutoIt script and it is harder to implement than it seems. On other hand if there is no need for continuous [...]

Leave a Reply

Subscribe to followup comments via RSS