Skip to content

Instantly share code, notes, and snippets.

@DaWe35
DaWe35 / Music file name corrector (for mp3 downloaded from Vubey)
Last active December 3, 2024 13:50
This script repairs the mp3 music file names downloaded from Vubey.yt. Run it on Windows PowerShell
cd C:\Users\USERNAME\Music\Rename
dir -recurse | where {-Not $_.PsIscontainer -AND $_.name -match "_"} | foreach {
$New=$_.name.Replace("_"," ")
Rename-Item -path $_.Fullname -newname $New -passthru
}
dir -recurse | where {-Not $_.PsIscontainer -AND $_.name -match "-Vubey"} | foreach {
$New=$_.name.Replace("-Vubey","")