I have a kiosk that displays a rolling set of pictures (i.e. slideshow). Sometimes Internet Explorer crashes.
I'm hoping to create a script that can detect if IE crashed. Either batch, or PHP.
Preferably, I'd like to do this all within windows. We have access to a linux environment, but our kiosks are maintained on a central windows kiosk server.
My idea was to use php in a background tab and listen on a socket, and use a remote windows box to attempt connecting on that socket (possibly on another php based tab); if the socket was not open, then a mail function would send out an email.
Ideally though, it would be nice if this could be ran locally on the kiosk vs a remote solution. One that might interact with a php localhost page (or not), and restart when it doesn't get a response.
We could also maybe modify the host page that does the slideshow rather than a separate tab.
Anyone got any more efficient ideas on how I can implement this?