0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Thumbs.dbを右クリックで削除する

Last updated at Posted at 2024-10-02

画像が入っているフォルダを削除しようとして、このような画面が表示されたことはありませんか?
image.png

何やら脅されてきますが、フォルダを削除したいので「はい」を押します。
image.png

このように表示され、フォルダが削除できない思いをしたことがある人は多いのではないでしょうか?
他の画像ファイルは綺麗に削除されてしまっているので、下記のようなThumbs.dbだけが残るフォルダが出来上がります。
image.png

この忌々しきThumbs.dbを右クリックで簡単に削除できるレジストリ設定ファイルを作成しました。

ThumbsCleaner

下記リポジトリからinstall-thumbs-cleaner.regを取得するか、下記内容の.regファイルを作成し、実行してください。

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\dbfile\shell\ThumbsCleaner]
@="Delete Thumbs.db"

[HKEY_CLASSES_ROOT\dbfile\shell\ThumbsCleaner\command]
@="cmd.exe /c del /q /a:h \"%1\""

[HKEY_CLASSES_ROOT\dbfile\shell\ThumbsCleaner\InProcServer32]
@=""

[HKEY_CLASSES_ROOT\Directory\shell\ThumbsCleaner]
@="Delete Thumbs.db Recursively"

[HKEY_CLASSES_ROOT\Directory\shell\ThumbsCleaner\command]
@="cmd.exe /c del /s /q /ah \"%1\\Thumbs.db\""

[HKEY_CLASSES_ROOT\Directory\background\shell\ThumbsCleaner]
@="Delete Thumbs.db Recursively"

[HKEY_CLASSES_ROOT\Directory\background\shell\ThumbsCleaner\command]
@="cmd.exe /c del /s /q /ah \"%V\\Thumbs.db\""

すると、Thumbs.dbを右クリックすると「Delete Thumbs.db」が表示されるようになるので、これをクリックするとThumbs.dbが削除できます。
また、フォルダやエクスプローラーの空いている場所を右クリックすると「Delete Thumbs.db Recursively」が表示され、そのフォルダ配下のThumbs.dbを再帰的に削除することができます。

まとめ

Thumbs.dbを右クリックから削除できるようにするレジストリ設定ファイルを作成しました。
役に立てば幸いです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?