Snippet: No More Thumbs

Date posted: Post reading time: 1 minute or less

A quick way to recursively scan a folder and remove Thumbs.db thumbnail caches.

Get-ChildItem -Path . -Include "Thumbs.db" -Recurse -Name -Force | Remove-Item -Force

Source: http://www.networkinghowtos.com/howto/powershell-command-to-recursively-delete-thumbs-db/