Powershell basics

Batch operations for file objects. Rename multiple files: Get-ChildItem *.txt | Rename-Item -NewName { $_.Name -replace ‘.txt’,’.log’ } The Get-ChildItem cmdlet gets all the files in the current folder that have a .txt file extension then pipes them to Rename-Item. The value of NewName is a script block that runs before the value is submitted to the NewName parameter. In the script block, the $_ automatic … Read more

Matroska and thumbnails

Why is the editor disabled the instance I move my mouse? A bit more to it than you might think even when having the latest software of Matroska Cover Art Guidelines Submitted by robUx4 on Sun, 2010-09-19, 16:16 With the rise of Media Centers and even programs to manage large amounts of audio files, it’s becoming necessary to … Read more