I like the Windows-L keyboard shortcut to lock the computer. Are there similar shortcuts for "Log Off" and "Standby"? Is it possible to remap Windows-L to a different function?
14 Answers
Standby
- create a new text file and put this on it
rundll32 powrprof.dll,SetSuspendState
save it as "standby.bat" and create a shortcut of it on the desktop
right-click the shortcut, select propriety and edit its shortcut key to CTRL + ALT + S
now CTRL + ALT + S will put your computer in standby.
Logoff
- create a new text file and put this on it
logoff
save it as "logoff.bat" and create a shortcut of it on the desktop
right-click the shortcut, select propriety and edit its shortcut key to CTRL + ALT + L
now CTRL + ALT + L will logoff.
With an AutoHotkey script, you can remap the Win+L shortcut and create another one for Sleep (I chose Win+S, normally not used unless you use 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
There is more detail on the DLL call in AutoHotkey's help file:
; 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)
- 33,097
The Windows 7 hibernate shortcut key is more like a PlayStation secret function!
⊞ Win, →, →, then:
- H - hibernate
- S - sleep
- U - shutdown
- O - lock
- L - log off
It helps when you have lost your screen on the way! An alternative shortcut to hibernate is:
⊞ Win + D, Alt + F4, H, Enter
There is a keyboard solution using existing shortcuts, though not as a single chord (meaning release each key before pressing the next):
- Win, →, Enter - last used shutdown action
- Win, →, → - select shutdown action
Found it at https://superuser.com/questions/16327/what-are-your-favourite-less-well-known-keyboard-shortcuts-in-windows
- 5,324
You can use the Alt+F4 shortcut then choose what you want in the resulting dialog box, or you can make one of them your default by doing the following:
- Click on the start button
- Right click on the arrow beside the bottom Power Settings button, and choose the Properties in this context menu. It should be the only one.
- In that dialog box choose Sleep (or whatever default you want) in the Power button Action field, then apply it and click OK.
When you're ready to put your PC to sleep or whatever you chose, use the Alt+F4 keyboard shortcut and then hit Enter. Whatever you set in the first step will be the default action that is applied when you hit Enter.
- 4,428
- 19
create a shortcut inside run
shutdown /l
then
set to shortcut key to WIN+ALT+L
done
- 111
This should really help out: Windows 7 Keyboard Shortcuts / Windows / Keyboard-Shortcut.com
Shutdown is actually Win→Enter.
Shortcut for logging out (Win 10/8/7/Vista)
Press Ctrl+Alt+Delete, followed by Alt+L.
All Ctrl+Alt+Delete shortcuts
- After opening screen with Ctrl+Alt+Delete:
- Lock this computer: Alt+K
- Switch Users: Alt+W
- Log off: Alt+L
- Change a password...: Alt+C
- Start Task Manager: Alt+T
- 16,075
#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 There is more detail on the DLL call in AutoHotkey's help file:
; 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)
- 1
Win + R "shutdown /L", the command line log off which can also be used as shortcut icon with custom user shortcuts.
- 187
Under windows7, check out the "shutdown" command from the cmd prompt.
Unfortunately, while it has hibernation as an option, it does not include "sleep"
- 9,204
create a shortcut .. put the location of the file as logoff.exe and name the shortcut whatever.. done.. right click shortcut go to properties.. change icon and pick an icon image for your shortcut.
and if you want it to be a hotkey.. then right click the shortcut and notice the hotkey box ... click it.. and then press a combination of keys.. bang.. done.. your welcome.
- 1
Maybe it is buried in here somewhere or maybe I do not understand the request, but the logout part is easy. Instead of using a keystroke or two, the easiest way is to create a shortcut with an icon on the screen you can call Logout User or whatever strikes your fancy. The shortcut should simply contain C:\windows\system32\shutdown.exe /L /F Double click on the icon and you are logged out.
- 1
