Skip to content

Instantly share code, notes, and snippets.

@krishnakummar
Created November 12, 2013 11:08
Show Gist options
  • Save krishnakummar/7429232 to your computer and use it in GitHub Desktop.
Save krishnakummar/7429232 to your computer and use it in GitHub Desktop.
removing all thumbnails from mp3 songs folder. these thumbnails are a disturbance when they are added in windows media player. this gist helps u to remove these images through powershell commands
PS> $data = get-childitem . "folder*" -rec -force | select directory, name
PS> foreach($x in $data) { $url = $x.directory.tostring() + '\' + $x.name.tostring(); remove-item $url -force;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment