支持

支持

我喜欢使用 Windows-L 键盘快捷键来锁定计算机。是否有类似的“注销”和“待机”快捷键?是否可以将 Windows-L 重新映射到其他功能?

答案1

自动热键脚本中,您可以重新映射Win+L快捷方式并为 Sleep 创建另一个快捷方式(我选择了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)

答案2

支持

  • 创建一个新文本文件并将其放入其中

rundll32 powrprof.dll,设置暂停状态

  • 将其保存为“standby.bat”并在桌面上创建其快捷方式

  • 右键单击快捷方式,选择并编辑其快捷键CTRL + ALT + S

now CTRL++ALT将使S您的计算机处于待机状态。

注销

  • 创建一个新文本文件并将其放入其中

注销

  • 将其保存为“logoff.bat”并在桌面上创建其快捷方式

  • 右键单击快捷方式,选择并编辑其快捷键CTRL + ALT + L

现在CTRL++ALTL注销。

答案3

Windows 7休眠快捷键更像是PlayStation的秘密功能!

⊞ Win, 然后:

  • H- 休眠
  • S- 睡觉
  • U- 关闭
  • O- 锁
  • L- 注销

当你在途中丢失屏幕时,它会有所帮助!休眠的另一种快捷方式是:

⊞ Win+ DAlt+ F4HEnter

答案4

您可以使用Alt+F4快捷方式,然后在出现的对话框中选择所需的内容,或者您​​可以通过执行以下操作将其中一个设置为默认值:

  • 点击开始按钮
  • 右键单击底部电源设置按钮旁边的箭头,然后在此上下文菜单中选择属性。它应该是唯一的一个。
  • 在该对话框中,在电源按钮操作字段中选择睡眠(或您想要的任何默认设置),然后应用它并单击确定。

当您准备让电脑进入睡眠状态或进行其他操作时,请使用Alt+F4键盘快捷键,然后按 Enter。您在第一步中设置的任何内容都将是您按​​ Enter 时应用的默认操作。

相关内容