Created
November 12, 2013 11:08
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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