From 26ef28dd8a569a6f558147b13729b480e888572e Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Thu, 30 Aug 2018 21:43:17 +0200 Subject: [PATCH] windows session lock timeout --- in/public/systems/windows/index.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/in/public/systems/windows/index.rst b/in/public/systems/windows/index.rst index 93533e3..482fff7 100644 --- a/in/public/systems/windows/index.rst +++ b/in/public/systems/windows/index.rst @@ -2,3 +2,16 @@ Windows ======= .. warning:: v7 does BSOD if system partition beginning moves + +Prevent short session lock timeout +---------------------------------- + +.vbs file: + +.. code:: + + Set shell = WScript.CreateObject("WScript.Shell") + Do While True + shell.sendkeys("{F15}") + Wscript.Sleep(1000*59) + Loop