Snippet: No More Thumbs
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/