我有一個非常簡單的問題,但我無法找到正確的簡單答案。我經常使用壓縮(壓縮)資料夾。我想改進我的工作流程。
選擇我需要壓縮的所有檔案後:
Right-click
→ Send to
→Compressed (zipped) folder
有沒有辦法在 Windows 上僅用一個字母(例如“Z”)為該操作分配熱鍵/快捷鍵?
因此,我沒有進行這 3 次滑鼠操作,而是只選擇要壓縮的檔案和字母“z”,然後就完成了。
或者如何在 Windows10 上建立上下文選單操作快捷方式?
我想要一個單字母命令快捷方式來執行以下事件:
Right-click
→ Send to
→Compressed (zipped) folder
任何幫助將非常感激!
答案1
我不知道開箱即用的 Windows 10 是否可以解決這個問題。
不過,如果您願意安裝自動熱鍵,您可以使用此腳本來調用壓縮(zipped)資料夾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