I wish I could install one newlisp app as windows service. Then it could watch over my other processes, make sure they are all alive.
How to do this?
I think you will need a programming enviroment/language that can compile such Service app-target.
And this app might use the dll-flavour of newlisp for executing the wanted lsp.
Example tutorial for Delphi:
http://www.tolderlund.eu/delphi/service/service.htm
Thanks. From your idea, I got my solution. Just install one bat file as windows service, and this bat file call my newlisp script file.
For example, My daemon.lsp file is:
(while true
(println "hello, I am daemon")
(append-file "c:\t.txt" "mm")
(sleep 1000))
And my daemon.bat file has:
newlisp C:windows_servicedaemon.lsp
Now, download nssm.exe from //http://nssm.cc/download/?page=download
Install this daemon.bat as windows service with the following command:
nssm install my_daemon C:windows_servicedaemon.bat
Hello,
Nice find of a generic solution.
Of cource you will see 2 pocesses in the processlist.
Does there appear any decription for the service?
Regards