I have bunch of files containing + sign in their name this script runs for removing any substring and character when doesn't work for '+' sign
Get-ChildItem -Recurse '*.*' | Rename-Item -NewName { $_.Name -Replace '+','' }
Please help
I tried to remove '+' sign from filenames