Scripting Mp3 Tags through PowerShell
Written by Niklas Goude on September 4, 2009 – 9:24 pm
Structuring up you Music Library can be a rather time consuming task. You can however script this rather easily through PowerShell using the taglib-sharp library.
Let’s start off by downloading the Tag-Lib Library
Next, We have to Load the Assembly from PowerShell in order to access the Classes.
PS > $TagLib = “C:\taglib\Libraries\taglib-sharp.dll”
PS > [System.Reflection.Assembly]::LoadFile($TagLib)
GAC [...]

