Get-ChildItem -Path "C:\Your\Directory\Path" -File | ForEach-Object { $newName = "THX-" + $_.Name Rename-Item -Path $_.FullName -NewName $newName }