在 Windows10 上创建发送到压缩 (zipped) 文件夹事件快捷方式

在 Windows10 上创建发送到压缩 (zipped) 文件夹事件快捷方式

我有一个非常简单的问题,但一直找不到正确的简单答案。我经常处理压缩文件夹。我想改进我的工作流程。

选择我需要压缩的所有文件后:

Right-clickSend toCompressed (zipped) folder

有没有办法在 Windows 上用一个字母(例如“Z”)为这个操作分配热键/快捷方式?

因此,我不需要进行这 3 次鼠标操作,只需选择要压缩的文件和字母“z”即可完成。

或者如何在 Windows10 上创建上下文菜单操作快捷方式?

我想要一个字母命令快捷方式来执行以下事件:

Right-clickSend toCompressed (zipped) folder

任何帮助将非常感激!

答案1

我不知道 Windows 10 是否可以解决这个问题。

但是,如果你愿意安装自动热键,您可以使用此脚本来调用压缩文件夹z当 Windows 资源管理器窗口具有焦点时使用该键。

我已经使用 Windows 8.1 测试了以下脚本。

#IfWinActive ahk_class CabinetWClass ; Only run AutoHotkey script when Windows explorer has the focus
z::                     ; Keyboard shortcut z
Send, {AppsKey}         ; Press the "context menu" key
Sleep 100
Send n                  ; Select "Send to" with the "n" key
Sleep 100
Send {Right}            ; Open "Sent to" with the "right arrow" key
Sleep 100
Send {Down}             ; Select "Compressed (zipped) folder" with the "arrow down" key
Sleep 100
Send {Enter}            ; Execute "Compressed (zipped) folder" with the "Enter" key
return

相关内容