


It can monitor multiple servers on many sites and also cloud servers. Site24x7 (FREE TRIAL) A cloud-based monitoring service that has a server and application monitoring module.SolarWinds Server & Application Monitor EDITOR’S CHOICE A tool to monitor the health of servers and the processes that they run in support of applications.Here is our list of the ten best processing monitoring tools:


However, this can be a time-consuming task and it is better to use an automated tool to monitor and manage processes. It is a good idea to look through the list of processes and kill off any that seem to have stalled and remove suspicious processes that you don’t recognize. Programs are not always written to deal with every eventuality and there can be processes still live, while effectively not doing anything. Processes sometimes hang because they are waiting for a resource that has been locked by another process. Some programs run one, while others are written to work continuously in a loop (daemons). Then you run the bat as administrator, or run the second line (without the psexec part) from task scheduler with elevated privileges.When a piece of software starts up, the operating system serving it creates a program to run the associated program. In that case the BAT will look like: c:\\psexec -h c:\\yourprogram.exeĬ:\\psexec -h wscript "C:\\invisible.vbs" "C:\\restart.bat" If the program you are running requires admin rights, the solution I found was using psexec ( ) to run both the program and the bat with elevated privileges. Oh, if you want to stop the loop, just rename the bat file or put "// " in front of the two lines, save it, and exit the program. Start the program (on startup via task or even just startup folder) with line 2, and this ought to solve your problem :) Wscript "C:\\invisible.vbs" "C:\\restart.bat" The final BAT file ("restart.bat" in this example) will look something like: c:\\yourprogram.exe Combine this with, and you'll never even see it happening. Using this, it's possible to make it run a loop that restarts the program (and reruns the bat file) as soon as it exits. This used to be kind of annoying if you wanted to run multiple things at once, but here it's actually useful. After that it will run "some other event". The BAT file will run yourprogram, and then pause and wait around in the background until the program exits. I just remembered something from my 286 days, when I played around a lot with BAT files. This goes especially if you run them on startup. Notice: running self-looping bat files can be useful, but unless you know what you're doing, they can wreak all kinds of havoc.
