* 特定のアプリのジャンプリストをリセットする [#e8463aac]
** 1. アプリのApplication IDを調べる [#a2277c1a]
- NirSoftのJumpListViewをダウンロードして、展開、実行する。
-- http://www.nirsoft.net/utils/jump_lists_view.html
- Filenameが目的のアプリの項目を探して、右クリックしてPropertiesを開く。
-- 今回は、putty.exe とする。
- Application IDの項目を確認して、メモを取る。
-- 今回は、1e9c8a0aaad0d103 とする。
** 2. AutomaticDestinationsとCustomDestinationsのパスを調べる [#t432e8de]
- 以下のそれぞれのコマンドについて、Win+Rキーを押して、コマンドを入力する。
-- shell:Recent\AutomaticDestinations
-- shell:RecentCustomDestinations
-- shell:Recent\CustomDestinations
- エクスプローラーが開くので、ロケーションバーのファイルパスを確認して、メモを取る。
-- 今回は、C:\Users\test01\AppData\Roaming\Microsoft\Windows\Recent\AutomaticDestinations と、
-- C:\Users\test01\AppData\Roaming\Microsoft\Windows\Recent\CustomDestinations とする。
** 3. エントリーの削除 [#b982124c]
- 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*
** 補足:アプリが補助情報を持ってる場合 [#v32156a5]
- アプリが補助情報を持っている場合がある。今回はPuTTYとする。
- レジストリエディタを起動する。
- PuTTYのレジストリ情報ストアまで移動する。
- 以下のキーの中のデータを削除する。
- HKEY_CURRENT_USER\SOFTWARE\SimonTatham\PuTTY\Jumplist
** 参考 [#je114606]
- http://www.eightforums.com/tutorials/9611-jump-lists-reset-clear-windows-8-a.html
- http://news.mynavi.jp/articles/2010/05/23/w7/001.html