Mit einem Skript AutoHotkey können Sie die Verknüpfung Win+L neu zuordnen und eine weitere Verknüpfung für den Ruhezustand erstellen (ich habe Win+S gewählt, normalerweise nicht verwendet, außer Sie verwenden OneNote):
#l:: ; Win+L
Shutdown, 0 ; this is the code for Log Off
return
#s:: ; Win+S
DllCall("PowrProf\SetSuspendState", "int", 0, "int", 0, "int", 0) ; DLL call to sleep
return
Weitere Einzelheiten zum DLL-Aufruf finden Sie in der Hilfedatei von AutoHotkey:
; Call the Windows API function "SetSuspendState" to have the system suspend or hibernate.
; Windows 95/NT4: Since this function does not exist, the following call would have no effect.
; Parameter #1: Pass 1 instead of 0 to hibernate rather than suspend.
; Parameter #2: Pass 1 instead of 0 to suspend immediately rather than asking each application for permission.
; Parameter #3: Pass 1 instead of 0 to disable all wake events.
DllCall("PowrProf\SetSuspendState", "int", 0, "int", 0, "int", 0)