Windows Tips
  • PowerSelll
    • Rename all files, replacing " " with "_"
    • Rename all files, removing first 3 characters
Powered by GitBook
On this page
  1. PowerSelll

Rename all files, removing first 3 characters

Rename all files, remove first 3 chars

get-childitem * | rename-item -newname { [string]($_.name).substring(3) }

PreviousRename all files, replacing " " with "_"

Last updated 1 year ago