Как я могу удалить файлы Thumbs.db

1123
Norman Allen

Как я могу удалить файлы Thumbs.db из Windows 7, не затрагивая другие файлы? Я уже отключил индексирование, так как использую программу «Все» для поиска.

0
Да, файл можно просто удалить. martineau 10 лет назад 0
Файлы thumbs.db НЕ создаются путем индексации, они создаются, когда вы хотите просматривать файлы по эскизам. Wizard Prang 10 лет назад 0

2 ответа на вопрос

2
Jack

You could also try this one-liner in PowerShell:

get-childitem c:\ -include thumbs.db -recurse | foreach ($_) 

By the way, you can replace "C:\" with a different starting folder if you don't want to search the entire drive.

1
week

Save this to file with .bat extension and run. It'll go through every folder on drive C:\ and del existing every file with name thumbs.db.

echo off for /R "c:\" %%i in (thumbs.db) do ( if exist %%i del %%i ) 

or

Use Explorer's search bar, type "thumbs.db", wait till it finds every occurence, then select all ctrl + a and delete