非常に単純な質問があるのですが、正しい簡単な答えが見つかりません。私は zip 形式 (圧縮) のフォルダーを頻繁に使用しています。ワークフローを改善したいと考えています。
圧縮する必要があるすべてのファイルを選択した後:
Right-click
→ Send to
→Compressed (zipped) folder
Windows でこのアクションに 1 文字 (たとえば「Z」) のみのホットキー/ショートカットを割り当てる方法はありますか?
したがって、マウスを 3 回操作する代わりに、圧縮するファイルを選択して「z」の文字を押すだけで完了します。
または、Windows10 でコンテキスト メニュー アクション ショートカットを作成する方法は?
次のイベントを実行するための 1 文字のコマンド ショートカットが必要です。
Right-click
→ Send to
→Compressed (zipped) folder
ご協力いただければ幸いです。
答え1
Windows 10 をそのまま使用してもそれが可能かどうかはわかりません。
ただし、インストールする場合はオートホットキーこのスクリプトを使用して呼び出すことができます圧縮(ZIP形式)フォルダzWindows エクスプローラー ウィンドウにフォーカスがあるときに、 キーを押します。
次のスクリプトを 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