Answers:
使用AutoHotkey脚本,您可以重新映射Win+ L快捷方式并为睡眠创建另一个快捷方式(我选择Win+ S,除非您使用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
AutoHotkey的帮助文件中有关于DLL调用的更多详细信息:
; 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)
rundll32 powrprof.dll,SetSuspendState
将其另存为“ standby.bat”并在桌面上创建快捷方式
右键单击快捷方式,选择适当性并将其快捷方式键编辑为CTRL + ALT + S
现在 CTRL+ ALT+ S会把你的电脑处于待机状态。
注销
将其保存为“ logoff.bat”并在桌面上创建快捷方式
右键单击快捷方式,选择适当性并将其快捷方式键编辑为CTRL + ALT + L
现在CTRL+ ALT+ L意志注销。
logoff
可执行文件的快捷方式。
Windows 7休眠快捷键更像是PlayStation的秘密功能!
⊞ Win,→,→,则:
当您在途中丢失屏幕时,它会有所帮助!休眠的另一种快捷方式是:
⊞ Win+ D,Alt+ F4,H,Enter
有一种使用现有快捷键的键盘解决方案,尽管不是单个和弦(意味着在按下下一个键之前先释放每个键):
在https://superuser.com/questions/16327/what-are-your-favourite-less-well-known-keyboard-shortcuts-in-windows中找到它
本教程适用于Windows Vista,但也适用于Windows 7。
这应该真的可以帮助您:Windows 7键盘快捷键/ Windows / Keyboard-Shortcut.com
关机实际上是Win→Enter。
按Ctrl+ Alt+ Delete,然后按Alt+ L。
创建一个快捷方式..将该文件的位置命名为logoff.exe,并以任何方式命名该快捷方式。.完成后..右键单击快捷方式转到属性。
如果您希望它成为热键,则右键单击该快捷方式,然后注意热键框...单击它,然后按组合键。
也许它埋在这里的某个地方,或者我听不懂请求,但是注销部分很容易。除了使用一两个击键,最简单的方法是在屏幕上创建带有图标的快捷方式,您可以致电Logout User或您喜欢的任何方式。快捷方式应仅包含C:\ windows \ system32 \ shutdown.exe / L / F双击图标,您将注销。