var fDesc=new Array(); fDesc[0] = "Windows Auto Reboot is the free command-line tool quickly enable or disable Automatic Reboot setting on your Windows system.

Normally when Windows NT system crashes it shows a BSOD (Blue Screen of Death) screen and requires manual reboot. This is not good for most server based applications (like Web, Mail or Directory) and we need to have automatic reboot enabled to prevent disruption of services.

In such scenario, Windows Auto Reboot tool will help you to easily Enable/Disable autoreboot setting as per your needs.


Being a command-line tool makes it easy to use on remote systems and also automate through scripts.


Windows Auto Reboot is fully portable and works on both 32-bit & 64-bit platforms starting from Windows NT to Windows 8."; 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 = ''; } }