特定のアプリのジャンプリストをリセットする

1. アプリのApplication IDを調べる

  • NirSoftのJumpListViewをダウンロードして、展開、実行する。
  • Filenameが目的のアプリの項目を探して、右クリックしてPropertiesを開く。
    • 今回は、putty.exe とする。
  • Application IDの項目を確認して、メモを取る。
    • 今回は、1e9c8a0aaad0d103 とする。

2. AutomaticDestinationsとCustomDestinationsのパスを調べる

  • 以下のそれぞれのコマンドについて、Win+Rキーを押して、コマンドを入力する。
    • shell:Recent\AutomaticDestinations
    • shell:Recent\CustomDestinations
  • エクスプローラーが開くので、ロケーションバーのファイルパスを確認して、メモを取る。
    • 今回は、C:\Users\test01\AppData\Roaming\Microsoft\Windows\Recent\AutomaticDestinations と、
    • C:\Users\test01\AppData\Roaming\Microsoft\Windows\Recent\CustomDestinations とする。

3. エントリーの削除

  • 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

参考


トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS

Last-modified: 2016-08-26 (金) 01:14:14