Advertisement
meetsos

Remove Characters from Filenames in Folder

Sep 22nd, 2016
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.23 KB | None | 0 0
  1. :: SHIFT + RIGHT CLICK IN FOLDER -> Run Command Here
  2. :: 1st command, enter powershell
  3. powershell
  4. :: 2nd command, rename files (example remove "+" and replace with gap)
  5. Dir | Rename-Item –NewName { $_.name –replace "+","" }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement