特定のアプリのジャンプリストをリセットする
1. アプリのApplication IDを調べる
- NirSoftのJumpListViewをダウンロードして、展開、実行する。
- Filenameが目的のアプリの項目を探して、右クリックしてPropertiesを開く。
- Application IDの項目を確認して、メモを取る。
- 今回は、1e9c8a0aaad0d103 とする。
AutomaticDestinationsとCustomDestinationsのパスを調べる
- 以下のそれぞれのコマンドについて、Win+Rキーを押して、コマンドを入力する。
- shell:Recent\AutomaticDestinations
- shell:RecentCustomDestinations
- エクスプローラーが開くので、ロケーションバーのファイルパスを確認して、メモを取る。
- 今回は、C:\Users\test01\AppData\Roaming\Microsoft\Windows\Recent\AutomaticDestinations と、
- C:\Users\test01\AppData\Roaming\Microsoft\Windows\Recent\CustomDestinations とする。
エントリーの削除
- PowerShellを管理者権限で起動する。
- 上で調べたパスに移動する。
- ファイル名がアプリケーションIDで始まるファイルを強制削除する。
cd C:\Users\test01\AppData\Roaming\Microsoft\Windows\Recent\AutomaticDestinations
del -Force 1e9c8a0aaad0d103*
cd C:\Users\test01\AppData\Roaming\Microsoft\Windows\Recent\CustomDestinations
del -Force 1e9c8a0aaad0d103*
補足:アプリが補助情報を持ってる場合
- アプリが補助情報を持っている場合がある。今回はPuTTYとする。
- レジストリエディタを起動する。
- PuTTYのレジストリ情報ストアまで移動する。
- 以下のキーの中のデータを削除する。
- HKEY_CURRENT_USER\SOFTWARE\SimonTatham\PuTTY\Jumplist
参考