Wednesday, September 28, 2016

Powershell: Renaming Characters In A FileName

Open Powershell
Navigate To Folder
Type the Following:
Get-ChildItem -recurse -name | ForEach-Object { Move-Item $_ $_.replace(" mkv", ".mkv") }

Where " mkv" is is the current characters
Where ".mkv" is is the new characters.