Hi. Some time ago, I asked for a batch rename tool, to batch rename files in a folder. After some assistance, I wound up with:

Dir | rename-item -newname { $_.name -replace "wet","dry" }

In Win powershell.

Now, I am looking for a way to add characters. So, let's say in a folder I have:

1.wav
2.wav
3.wav

and I want to wind up with:

JH1.wav
JH2.wav
JH3.wav

- what's the best way to do this? I tried substituting -rename with -add, and playing around with the text in the curly brackets, but to no avail. Any ideas?

Thanks in advance.