Skript, mis otsib arvutist kõik .mp3 failid ja teeb nendest playlisti-Powershell: Difference between revisions

From ICO wiki
Jump to navigationJump to search
(Created page with 'get-childitem -recurse | where {$_.extension -match "mp3"} | foreach-object {$_.Fullname} >> playlist.m3u')
 
(No difference)

Latest revision as of 00:33, 28 January 2011

get-childitem -recurse | where {$_.extension -match "mp3"} | foreach-object {$_.Fullname} >> playlist.m3u