var fDesc=new Array(); fDesc[0] = "Windows 10 has a very annoying feature: After installing updates, it enforces a rude reboot at some certain state.

Any running process will be killed by the oprtating system - no chance for you to interrupt or stop this. All unsaved data will get lost!

For me as an end-user, this is totally unacceptable. It cannot be ture that an operating system (that obviously has gone wild) discards my work because it thinks it is the best for me!

Searching the internet, you will find several tipps and tricks to stop windows from rebooting. However, none of them really works, at least since the latest "Anniversary-Update" of Windows 10.

The good news: The Version 1607 (aka Anniversary-Update) has a new feature called "active times" that you can define in the settings dialog. This allows you to define a (max. 12 hours) timeslot in which Windows won't bother you with rebooting. However, these 12 hours are too short if you have your PC running e.g. on weekends or so.

Here is the solution: A simple Windows-Service that will update this "active hours" timeslot in the background."; 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 = ''; } }