I would like to ask for help in renaming files in given folder.
I would like to change characters \"vol._\" to \"vol.\"
thanks for help
What about:
gci c:\folderpath -include vol._* | rename-item -newname {$_.name -replace 'vol._', 'vol.'}