var fDesc=new Array();
fDesc[0] = "Windows services are critical components of Windows-based servers and workstations. To ensure correct system functions and prevent downtime, administrators shall closely watch service states and take corrective actions as soon services fail.
Netwrix Services Monitor is a FREE tool that automatically tracks all Windows services configured to start automatically. If a service fails to start or accidentally stops, the tool sends e-mail alert to admin and optionally restarts the service or the entire computer. The tool can be used to monitor MS Exchange services and prevent e-mail downtime.
Product features and benefits:
- Track multiple computers at a time. Scales well to track thousands of computers.
- Detects all services configured in Automatic startup mode.
- Sends e-mail alerts to amdinistartors.
- Optionally restarts failed services (commercial version only).
- Optionally restarts computers when one or more services fail (commercial version only).
Two editions are available: freeware and commercial. Please contact Netwrix Corporation at www.netwrix.com for more information.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}